aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDioEgizio <83089242+DioEgizio@users.noreply.github.com>2022-06-15 09:11:23 +0200
committerGitHub <noreply@github.com>2022-06-15 09:11:23 +0200
commit1f6cef6f8a678be49e091a7f11123fbfb1ef749a (patch)
tree0b726957845d2bfd4ad56ad7cbf4d495f04c8824
parent707a68cb4f71c8de5476064215f49ead011a9038 (diff)
downloadPrismLauncher-1f6cef6f8a678be49e091a7f11123fbfb1ef749a.tar.gz
PrismLauncher-1f6cef6f8a678be49e091a7f11123fbfb1ef749a.tar.bz2
PrismLauncher-1f6cef6f8a678be49e091a7f11123fbfb1ef749a.zip
fix https://github.com/PolyMC/PolyMC/issues/798
-rw-r--r--launcher/modplatform/flame/FlamePackIndex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlamePackIndex.cpp b/launcher/modplatform/flame/FlamePackIndex.cpp
index ba1622d1..ad48b7b6 100644
--- a/launcher/modplatform/flame/FlamePackIndex.cpp
+++ b/launcher/modplatform/flame/FlamePackIndex.cpp
@@ -53,7 +53,7 @@ void Flame::loadIndexedInfo(IndexedPack& pack, QJsonObject& obj)
{
auto links_obj = Json::ensureObject(obj, "links");
- pack.extra.websiteUrl = Json::ensureString(links_obj, "issuesUrl");
+ pack.extra.websiteUrl = Json::ensureString(links_obj, "websiteUrl");
if(pack.extra.websiteUrl.endsWith('/'))
pack.extra.websiteUrl.chop(1);