Merge pull request #9495 from leoetlino/wiki-redirect
Qt: Fix "open wiki" option not using the wiki redirect script
This commit is contained in:
commit
1e71904cb9
|
@ -503,7 +503,8 @@ void GameList::OpenWiki()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QString game_id = QString::fromStdString(game->GetGameID());
|
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));
|
QDesktopServices::openUrl(QUrl(url));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue