Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
3 changes: 2 additions & 1 deletion Source/Core/DolphinQt/GameList/GameList.cpp
Expand Up @@ -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));
}

Expand Down

0 comments on commit 1e71904

Please sign in to comment.