diff options
author | saturneric <[email protected]> | 2024-01-19 12:10:17 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-19 12:10:17 +0000 |
commit | f22ceca734868a4cb946c232f661aad72da01ded (patch) | |
tree | 5d858753ca06a8dfed12a92f4762e579900cfb1f /src/ui/main_window/MainWindowUI.cpp | |
parent | fix: slove discovered bugs (diff) | |
download | GpgFrontend-f22ceca734868a4cb946c232f661aad72da01ded.tar.gz GpgFrontend-f22ceca734868a4cb946c232f661aad72da01ded.zip |
fix: slove discovered faults and bugs
Diffstat (limited to 'src/ui/main_window/MainWindowUI.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowUI.cpp b/src/ui/main_window/MainWindowUI.cpp index 662c673f..ab0df25f 100644 --- a/src/ui/main_window/MainWindowUI.cpp +++ b/src/ui/main_window/MainWindowUI.cpp @@ -254,7 +254,7 @@ void MainWindow::create_actions() { if (file_info.isFile()) { const QString extension = file_info.completeSuffix(); - if (extension == ".tar.gpg" || extension == ".tar.asc") { + if (extension == "tar.gpg" || extension == "tar.asc") { this->SlotArchiveDecryptVerify(path); } else { this->SlotFileDecryptVerify(path); |