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/shared/skyriminfo.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/shared/skyriminfo.cpp')
| -rw-r--r-- | src/shared/skyriminfo.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/shared/skyriminfo.cpp b/src/shared/skyriminfo.cpp index 38b2cf37..1620bcc3 100644 --- a/src/shared/skyriminfo.cpp +++ b/src/shared/skyriminfo.cpp @@ -181,9 +181,13 @@ std::wstring SkyrimInfo::getSEName() }
-std::wstring SkyrimInfo::getNexusPage()
+std::wstring SkyrimInfo::getNexusPage(bool nmmScheme)
{
- return L"http://nmm.nexusmods.com/skyrim";
+ if (nmmScheme) {
+ return L"http://nmm.nexusmods.com/skyrim";
+ } else {
+ return L"http://www.nexusmods.com/skyrim";
+ }
}
|
