Merge pull request #9495 from leoetlino/wiki-redirect

Qt: Fix "open wiki" option not using the wiki redirect script
This commit is contained in:
Léo Lam
2021-02-10 13:14:47 +01:00
committed by GitHub

View File

@ -503,7 +503,8 @@ void GameList::OpenWiki()
return;
QString game_id = QString::fromStdString(game->GetGameID());
QString url = QStringLiteral("https://wiki.dolphin-emu.org/index.php?title=").append(game_id);
QString url =
QStringLiteral("https://wiki.dolphin-emu.org/dolphin-redirect.php?gameid=").append(game_id);
QDesktopServices::openUrl(QUrl(url));
}