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
commit 1e71904cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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));
}