aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/ImportPage.cpp
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-05-15 11:48:09 +0200
committerGitHub <noreply@github.com>2022-05-15 11:48:09 +0200
commit8e764fc8fb2adcc4c1e7fc9895133fc1a23b2fba (patch)
tree8f43ab1f58a6b0fe35bdc472aae0fa9342e69be0 /launcher/ui/pages/modplatform/ImportPage.cpp
parent31988f0529f6c316d6a9ba3e66cf981a807ed710 (diff)
parent4745ed28186f46de60de155826c8f2bfb54f45cb (diff)
downloadPrismLauncher-8e764fc8fb2adcc4c1e7fc9895133fc1a23b2fba.tar.gz
PrismLauncher-8e764fc8fb2adcc4c1e7fc9895133fc1a23b2fba.tar.bz2
PrismLauncher-8e764fc8fb2adcc4c1e7fc9895133fc1a23b2fba.zip
Merge pull request #4 from flowln/modrinth_pack
Diffstat (limited to 'launcher/ui/pages/modplatform/ImportPage.cpp')
-rw-r--r--launcher/ui/pages/modplatform/ImportPage.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/launcher/ui/pages/modplatform/ImportPage.cpp b/launcher/ui/pages/modplatform/ImportPage.cpp
index 3b65de9d..c86d02ca 100644
--- a/launcher/ui/pages/modplatform/ImportPage.cpp
+++ b/launcher/ui/pages/modplatform/ImportPage.cpp
@@ -110,7 +110,10 @@ void ImportPage::updateState()
// FIXME: actually do some validation of what's inside here... this is fake AF
QFileInfo fi(input);
// mrpack is a modrinth pack
- if(fi.exists() && (fi.suffix() == "zip" || fi.suffix() == "mrpack"))
+
+ // Allow non-latin people to use ZIP files!
+ auto zip = QMimeDatabase().mimeTypeForUrl(url).suffixes().contains("zip");
+ if(fi.exists() && (zip || fi.suffix() == "mrpack"))
{
QFileInfo fi(url.fileName());
dialog->setSuggestedPack(fi.completeBaseName(), new InstanceImportTask(url));