diff options
author | flow <flowlnlnln@gmail.com> | 2022-11-14 14:16:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 14:16:01 -0800 |
commit | cedc7754d96e4c53d50bcce2b2a0f139b840f3d0 (patch) | |
tree | 4ed309ec0c3419d759c0d7459c7517101e2b252e /launcher/minecraft/mod | |
parent | fece9e207bdae16574f450593346e80f50702b00 (diff) | |
parent | 5be947291285fc8ed10852b54a647ecd338d645d (diff) | |
download | PrismLauncher-cedc7754d96e4c53d50bcce2b2a0f139b840f3d0.tar.gz PrismLauncher-cedc7754d96e4c53d50bcce2b2a0f139b840f3d0.tar.bz2 PrismLauncher-cedc7754d96e4c53d50bcce2b2a0f139b840f3d0.zip |
Merge pull request #428 from DioEgizio/fixes-to-CI
Diffstat (limited to 'launcher/minecraft/mod')
-rw-r--r-- | launcher/minecraft/mod/tasks/LocalModParseTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/mod/tasks/LocalModParseTask.cpp b/launcher/minecraft/mod/tasks/LocalModParseTask.cpp index a694e7b2..774f6114 100644 --- a/launcher/minecraft/mod/tasks/LocalModParseTask.cpp +++ b/launcher/minecraft/mod/tasks/LocalModParseTask.cpp @@ -121,7 +121,7 @@ ModDetails ReadMCModTOML(QByteArray contents) return {}; } auto modsTable = tomlModsTable0->as_table(); - if (!tomlModsTable0) { + if (!modsTable) { qWarning() << "Corrupted mods.toml? [[mods]] was not a table!"; return {}; } |