mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Remove redundant openUrl variable
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
7eb31c31e5
commit
58f91072a5
@ -546,8 +546,7 @@ void EditLocallyJob::openFile()
|
||||
// from a separate thread, or, there will be a freeze. To avoid searching for a specific folder and checking
|
||||
// if the VFS is enabled - we just always call it from a separate thread.
|
||||
QtConcurrent::run([localFilePathUrl, this]() {
|
||||
const auto fileOpened = QDesktopServices::openUrl(localFilePathUrl);
|
||||
if (!fileOpened) {
|
||||
if (QDesktopServices::openUrl(localFilePathUrl)) {
|
||||
showError(tr("Could not open %1").arg(_fileName), tr("Please try again."));
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user