diff options
author | saturneric <[email protected]> | 2025-02-16 12:36:41 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-16 12:36:41 +0000 |
commit | 8dfe4599860656b90fe8fb7f855f25233cc25912 (patch) | |
tree | f40584a9ac9b00e4523d6997714b791d0d91604a /src/ui/main_window/MainWindowSlotFunction.cpp | |
parent | chore: update appstream info (diff) | |
download | GpgFrontend-8dfe4599860656b90fe8fb7f855f25233cc25912.tar.gz GpgFrontend-8dfe4599860656b90fe8fb7f855f25233cc25912.zip |
fix: do not check commit hash in flatpak container
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindowSlotFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowSlotFunction.cpp b/src/ui/main_window/MainWindowSlotFunction.cpp index 8743c937..781c67d1 100644 --- a/src/ui/main_window/MainWindowSlotFunction.cpp +++ b/src/ui/main_window/MainWindowSlotFunction.cpp @@ -296,7 +296,7 @@ void MainWindow::slot_version_upgrade_notify() { [=]() { (new AboutDialog(tr("Update"), this))->show(); }); statusBar()->addPermanentWidget(b); - } else if (is_git_commit_hash_mismatch) { + } else if (is_git_commit_hash_mismatch && !IsFlatpakENV()) { QMessageBox::information( this, tr("Commit Hash Mismatch"), tr("The current version's commit hash does not match the official " |