diff options
| author | Tannin <devnull@localhost> | 2013-12-08 14:16:25 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-12-08 14:16:25 +0100 |
| commit | 9ee90a35dc3ebdbc76b18cbeb72995345ee37052 (patch) | |
| tree | 9d64e222742eca0b01fbafb154b977b415bdf53d /src/mainwindow.cpp | |
| parent | ff78c6a014f8342024c3b271dbfca5ea0b4573f7 (diff) | |
- MO now applies a minimum to the nmm-compatibility field.
- bugfix: "visit on nexus" directed the browser to the servers meant for nmm
- bugfix: url for "check all for updates" and "enorse/unendorse" were not constructed correctly
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index b435cda0..17f2de09 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3215,7 +3215,7 @@ void MainWindow::visitOnNexus_clicked() { int modID = m_ModList.data(m_ModList.index(m_ContextRow, 0), Qt::UserRole).toInt(); if (modID > 0) { - nexusLinkActivated(QString("%1/mods/%2").arg(ToQString(GameInfo::instance().getNexusPage())).arg(modID)); + nexusLinkActivated(QString("%1/mods/%2").arg(ToQString(GameInfo::instance().getNexusPage(false))).arg(modID)); } else { MessageDialog::showMessage(tr("Nexus ID for this Mod is unknown"), this); } |
