We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c3d46 commit 0a6d09cCopy full SHA for 0a6d09c
loader/src/server/DownloadManager.cpp
@@ -149,6 +149,7 @@ class ModDownload::Impl final {
149
};
150
}
151
else {
152
+ #ifdef GEODE_IS_IOS
153
auto okUnzip = LoaderImpl::get()->unzipGeodeFile(m_id);
154
if (!okUnzip) {
155
m_status = DownloadStatusError {
@@ -160,6 +161,11 @@ class ModDownload::Impl final {
160
161
.version = version
162
163
164
+ #else
165
+ m_status = DownloadStatusDone {
166
+ .version = version
167
+ };
168
+ #endif
169
170
171
0 commit comments