diff options
| author | Jake <jakemaguy@gmail.com> | 2019-04-14 02:08:36 -0400 |
|---|---|---|
| committer | Jake <jakemaguy@gmail.com> | 2019-04-14 02:08:36 -0400 |
| commit | 94cd6f5349239c7afba2aba68a44ab10fe443944 (patch) | |
| tree | 48babd14c3cd73811c1af62cb083e1bcc02c8884 | |
| parent | b932416249681a6127d2dafa80ea350f5da43833 (diff) | |
Added the missing URL to setURL function to support the call to getURL()
| -rw-r--r-- | src/modinfodialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index d733f851..0e41b10e 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -857,6 +857,7 @@ void ModInfoDialog::activateNexusTab() QLabel *visitNexusLabel = findChild<QLabel*>("visitNexusLabel"); visitNexusLabel->setText(tr("<a href=\"%1\">Visit on Nexus</a>").arg(nexusLink)); visitNexusLabel->setToolTip(nexusLink); + m_ModInfo->setURL(nexusLink); if (m_ModInfo->getNexusDescription().isEmpty() || QDateTime::currentDateTimeUtc() >= m_ModInfo->getLastNexusQuery().addDays(1)) { refreshNexusData(modID); |
