Skip to content

Commit

Permalink
gameShortName has been replaced by gameNexusName due to syrimse on ne…
Browse files Browse the repository at this point in the history
…xus using skyrimspecialediton.
  • Loading branch information
LePresidente committed Dec 4, 2016
1 parent db6b536 commit 61edeb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nexusinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}


Expand Down Expand Up @@ -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();
}
}

Expand Down

0 comments on commit 61edeb1

Please sign in to comment.