summaryrefslogtreecommitdiff
path: root/src/nexusinterface.cpp
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2018-04-24 09:28:08 -0700
committerSilarn <jrim@rimpo.org>2018-04-24 09:28:08 -0700
commit10b8d121527fe7b2b79768717c27c563009c20ef (patch)
tree8cbe2b03cc22e6860a7b79508f26e6686e738195 /src/nexusinterface.cpp
parentb3ef1858661c73a022f8432dad0b3c9e957ac350 (diff)
Update to https for other nexus links For Security
Diffstat (limited to 'src/nexusinterface.cpp')
-rw-r--r--src/nexusinterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp
index c79e17a0..45811658 100644
--- a/src/nexusinterface.cpp
+++ b/src/nexusinterface.cpp
@@ -254,14 +254,14 @@ QString NexusInterface::getGameURL(QString gameName) const
{
IPluginGame *game = getGame(gameName);
if (game != nullptr) {
- return "http://www.nexusmods.com/" + game->gameNexusName().toLower();
+ return "https://www.nexusmods.com/" + game->gameNexusName().toLower();
}
- return "http://www.nexusmods.com/" + m_Game->gameNexusName().toLower();
+ return "https://www.nexusmods.com/" + m_Game->gameNexusName().toLower();
}
QString NexusInterface::getOldModsURL() const
{
- return "http://" + m_Game->gameNexusName().toLower() + ".nexusmods.com/mods";
+ return "https://" + m_Game->gameNexusName().toLower() + ".nexusmods.com/mods";
}