mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
fix build on qt 6.4 (#4920)
This commit is contained in:
commit
a884e36b96
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ ModDetails ReadMCModTOML(QByteArray contents)
|
|||
continue;
|
||||
}
|
||||
auto modId = (*dep_table)["modId"].as_string();
|
||||
if (!modId || ignoreModIds.contains(modId->get())) {
|
||||
if (!modId || ignoreModIds.contains(QString::fromStdString(modId->get()))) {
|
||||
continue;
|
||||
}
|
||||
if (isNeoForgeDep(dep_table) || isForgeDep(dep_table)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue