diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-03-12 16:00:06 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-04-07 00:20:01 +0200 |
commit | 8321187a20eec9871f327aa23f421e79dcfdd409 (patch) | |
tree | c765e3acdf9f01c27563e84d1fd4f27696a5996a /api/logic/meta/VersionList.cpp | |
parent | ab868df50eb6f9f3958bdc0a7ab9199dcdf46b3c (diff) | |
download | MultiMC-8321187a20eec9871f327aa23f421e79dcfdd409.tar MultiMC-8321187a20eec9871f327aa23f421e79dcfdd409.tar.gz MultiMC-8321187a20eec9871f327aa23f421e79dcfdd409.tar.lz MultiMC-8321187a20eec9871f327aa23f421e79dcfdd409.tar.xz MultiMC-8321187a20eec9871f327aa23f421e79dcfdd409.zip |
NOISSUE fix downloading of metadata files
Diffstat (limited to 'api/logic/meta/VersionList.cpp')
-rw-r--r-- | api/logic/meta/VersionList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/meta/VersionList.cpp b/api/logic/meta/VersionList.cpp index 11e20c12..aab3e0f7 100644 --- a/api/logic/meta/VersionList.cpp +++ b/api/logic/meta/VersionList.cpp @@ -178,7 +178,7 @@ std::unique_ptr<Task> VersionList::localUpdateTask() QString VersionList::localFilename() const { - return m_uid + ".json"; + return m_uid + "/index.json"; } QJsonObject VersionList::serialized() const { |