WhatSie: fix opening downloads (#13619)

This commit is contained in:
Peppersawce
2026-01-13 14:37:50 +01:00
committed by GitHub
parent 4f3888b852
commit 7329fe10c4
2 changed files with 24 additions and 1 deletions

View File

@@ -246,3 +246,26 @@ index 966b907..e39f702 100644
--
2.52.0
From f3f8ceb21eaba7d83fb3303ab6ba0511f7f843b8 Mon Sep 17 00:00:00 2001
From: Peppersawce <michaelpeppers89@yahoo.it>
Date: Tue, 13 Jan 2026 14:00:04 +0100
Subject: Fix opening downloaded files/folder
diff --git a/src/utils.cpp b/src/utils.cpp
index a2ebc00..381432d 100644
--- a/src/utils.cpp
+++ b/src/utils.cpp
@@ -403,7 +403,7 @@ void Utils::desktopOpenUrl(const QString &filePathStr) {
}
});
- xdg_open->start("xdg-open", {filePathStr});
+ xdg_open->start("open", {filePathStr});
}
bool Utils::isPhoneNumber(const QString &phoneNumber) {
--
2.52.0

View File

@@ -3,7 +3,7 @@ DESCRIPTION="WhatSie is a feature rich WhatsApp web client based on Qt WebEngine
HOMEPAGE="https://github.com/keshavbhatt/whatsie"
COPYRIGHT="2024 Keshav Bhatt"
LICENSE="MIT"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/keshavbhatt/whatsie/archive/refs/tags/v$portVersion.tar.gz"
CHECKSUM_SHA256="6149c05e30d87e61ee480d7ead082224cf9f32fea61a3820c0f7225ae8a8a616"
SOURCE_DIR="whatsie-$portVersion"