Skip to content
Permalink
Browse files
Merge pull request #9495 from leoetlino/wiki-redirect
Qt: Fix "open wiki" option not using the wiki redirect script
  • Loading branch information
leoetlino committed Feb 10, 2021
2 parents 3e4bf57 + 7ef8e53 commit 1e71904
Showing 1 changed file with 2 additions and 1 deletion.
@@ -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));
}

0 comments on commit 1e71904

Please sign in to comment.