summaryrefslogtreecommitdiff
path: root/src/modinfodialog.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-12-19 19:40:59 +0100
committerTannin <devnull@localhost>2013-12-19 19:40:59 +0100
commit35c9fe3e98cd4a81b114b0d9acb24727465d94b3 (patch)
tree33a32eefc8c1d1620f3282b33c10fa165d149d15 /src/modinfodialog.cpp
parent82f7b09b40ffdbcee1ef275b499b6b8bcf0001bf (diff)
- bugfix: archive.dll could cause a crash, attempting to close an archive that failed to open
- bugfix: upon changing categories the mappings of deleted categories wasn't cleaned up which could cause an error message - bugfix: the number of esps/esms that can be loaded is actually 255 not 256 since the save game counts too - bugfix: "visit on nexus" from the modinfo dialog also lead to the wrong url
Diffstat (limited to 'src/modinfodialog.cpp')
-rw-r--r--src/modinfodialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp
index 521eea24..1da050ed 100644
--- a/src/modinfodialog.cpp
+++ b/src/modinfodialog.cpp
@@ -631,7 +631,7 @@ void ModInfoDialog::on_visitNexusLabel_linkActivated(const QString &link)
void ModInfoDialog::linkClicked(const QUrl &url)
{
- if (url.toString().startsWith(ToQString(GameInfo::instance().getNexusPage()))) {
+ if (url.toString().startsWith(ToQString(GameInfo::instance().getNexusPage(false)))) {
this->close();
emit nexusLinkActivated(url.toString());
} else {