diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-16 20:17:19 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-16 20:17:19 +0200 |
commit | cd9e0e0cc0228ffa24466814a649abef43045745 (patch) | |
tree | 449e2936adc6d345ee1ed2de9a5a12b2a6725463 /launcher/ui | |
parent | a6d2c5e18131ab155ed482aeab548dabc2741d62 (diff) | |
download | PrismLauncher-cd9e0e0cc0228ffa24466814a649abef43045745.tar.gz PrismLauncher-cd9e0e0cc0228ffa24466814a649abef43045745.tar.bz2 PrismLauncher-cd9e0e0cc0228ffa24466814a649abef43045745.zip |
fix: use own metacache base for modrinth icons
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp b/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp index bb54bc20..bc1046ad 100644 --- a/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp +++ b/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp @@ -208,7 +208,7 @@ void ModpackListModel::requestLogo(QString logo, QString url) } MetaEntryPtr entry = - APPLICATION->metacache()->resolveEntry(m_parent->metaEntryBase(), QString("logos/%1").arg(logo.section(".", 0, 0))); + APPLICATION->metacache()->resolveEntry("ModrinthPacks", QString("logos/%1").arg(logo.section(".", 0, 0))); auto job = new NetJob(QString("%1 Icon Download %2").arg(m_parent->debugName()).arg(logo), APPLICATION->network()); job->addNetAction(Net::Download::makeCached(QUrl(url), entry)); |