diff options
| author | lepresidente <brian.alexander.munro@gmail.com> | 2016-12-04 17:56:07 +0200 |
|---|---|---|
| committer | lepresidente <brian.alexander.munro@gmail.com> | 2016-12-04 17:56:07 +0200 |
| commit | 61edeb12f10707a03aea33e67ea6fd47990ee543 (patch) | |
| tree | b290608242c672fd9f751d071866c36c821e8da7 /src | |
| parent | db6b536fb1177835930ff8035f0f03cf43c30e8c (diff) | |
gameShortName has been replaced by gameNexusName due to syrimse on nexus using skyrimspecialediton.
Diffstat (limited to 'src')
| -rw-r--r-- | src/nexusinterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 6e989b0d..eba02a6f 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -252,12 +252,12 @@ bool NexusInterface::isURLGameRelated(const QUrl &url) const QString NexusInterface::getGameURL() const
{
- return "http://www.nexusmods.com/" + m_Game->gameShortName().toLower();
+ return "http://www.nexusmods.com/" + m_Game->gameNexusName().toLower();
}
QString NexusInterface::getOldModsURL() const
{
- return "http://" + m_Game->gameShortName().toLower() + ".nexusmods.com/mods";
+ return "http://" + m_Game->gameNexusName().toLower() + ".nexusmods.com/mods";
}
@@ -599,7 +599,7 @@ void NexusInterface::managedGameChanged(IPluginGame const *game) namespace {
QString get_management_url(MOBase::IPluginGame const *game)
{
- return "http://nmm.nexusmods.com/" + game->gameShortName().toLower();
+ return "http://nmm.nexusmods.com/" + game->gameNexusName().toLower();
}
}
|
