diff options
| author | Al12rs <gabriel.cortesi@outlook.com> | 2018-03-12 23:18:03 +0100 |
|---|---|---|
| committer | Al12rs <gabriel.cortesi@outlook.com> | 2018-03-12 23:18:03 +0100 |
| commit | ccb5ad53e22e54f416c4cc3f33c2b57d0b1b672a (patch) | |
| tree | d41045b2c943bbcb874d6a9e5367a016043a777f /src | |
| parent | 8305d9215725a49dd9c61c2609fa750a20315af9 (diff) | |
Fixed wrong Nexus page url in CSV export.
Diffstat (limited to 'src')
| -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 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())
|
