summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-03-12 23:18:03 +0100
committerAl12rs <gabriel.cortesi@outlook.com>2018-03-12 23:18:03 +0100
commitccb5ad53e22e54f416c4cc3f33c2b57d0b1b672a (patch)
treed41045b2c943bbcb874d6a9e5367a016043a777f /src/mainwindow.cpp
parent8305d9215725a49dd9c61c2609fa750a20315af9 (diff)
Fixed wrong Nexus page url in CSV export.
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index bdf79bd5..5be5cef3 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3201,7 +3201,7 @@ void MainWindow::exportModListCSV()
if (nexus_ID->isChecked())
builder.setRowField("#Nexus_ID", info->getNexusID());
if (mod_Nexus_URL->isChecked())
- builder.setRowField("#Mod_Nexus_URL", info->getURL());
+ builder.setRowField("#Mod_Nexus_URL",(info->getNexusID()>0)? NexusInterface::instance()->getModURL(info->getNexusID()) : "");
if (mod_Version->isChecked())
builder.setRowField("#Mod_Version", info->getVersion().canonicalString());
if (install_Date->isChecked())