diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-09-27 17:34:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 17:34:32 +0200 |
commit | 59e565ef96b85be9a25fa5d4f1723ee87fd5e75e (patch) | |
tree | 2c1884b42451f2b8da4b4633c1458af2dfb8c6df | |
parent | 0406e168e716031e3cee1a23d70d508d0eb63dd2 (diff) | |
parent | 14af7044be6bead9f29e3481d9c8760d738f317b (diff) | |
download | PrismLauncher-59e565ef96b85be9a25fa5d4f1723ee87fd5e75e.tar.gz PrismLauncher-59e565ef96b85be9a25fa5d4f1723ee87fd5e75e.tar.bz2 PrismLauncher-59e565ef96b85be9a25fa5d4f1723ee87fd5e75e.zip |
Merge pull request #1643 from bolli24/develop
-rw-r--r-- | launcher/ui/dialogs/ModUpdateDialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/ModUpdateDialog.cpp b/launcher/ui/dialogs/ModUpdateDialog.cpp index 1f0fa7cd..04173c88 100644 --- a/launcher/ui/dialogs/ModUpdateDialog.cpp +++ b/launcher/ui/dialogs/ModUpdateDialog.cpp @@ -236,6 +236,10 @@ auto ModUpdateDialog::ensureMetadata() -> bool if (skip_rest) continue; + if (candidate->type() == ResourceType::FOLDER) { + continue; + } + if (confirm_rest) { addToTmp(candidate, provider_rest); should_try_others.insert(candidate->internal_id(), try_others_rest); |