summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-01-13 21:05:39 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-02-07 22:40:57 -0500
commit3c3aac382a2f4bb79b8c5aaa87def9a2574b6361 (patch)
treebd5f29a9e5294af7ce014e62f15d1a8484d82e30
parentadac125312cc0c66a11e91b9814b104f006d8316 (diff)
downloadSMAPI-3c3aac382a2f4bb79b8c5aaa87def9a2574b6361.tar.gz
SMAPI-3c3aac382a2f4bb79b8c5aaa87def9a2574b6361.tar.bz2
SMAPI-3c3aac382a2f4bb79b8c5aaa87def9a2574b6361.zip
fix broken ModDrop links
-rw-r--r--docs/release-notes.md3
-rw-r--r--src/SMAPI.Web/ViewModels/ModModel.cs2
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 93e80266..0081d8cf 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -11,6 +11,9 @@
* Fixed 'unknown mod' deprecation warnings when they occur in the Mod constructor.
* Updated compatibility list.
+* For the web UI:
+ * Fixed broken ModDrop links in the compatibility list.
+
* For modders:
* Fixed `Constants.SaveFolderName` and `CurrentSavePath` not available during early load stages when using `Specialised.LoadStageChanged` event.
* Fixed `LoadStage.SaveParsed` raised before the parsed save data is available.
diff --git a/src/SMAPI.Web/ViewModels/ModModel.cs b/src/SMAPI.Web/ViewModels/ModModel.cs
index f1a52f98..ae81acf5 100644
--- a/src/SMAPI.Web/ViewModels/ModModel.cs
+++ b/src/SMAPI.Web/ViewModels/ModModel.cs
@@ -107,7 +107,7 @@ namespace StardewModdingAPI.Web.ViewModels
if (entry.ModDropID.HasValue)
{
anyFound = true;
- yield return new ModLinkModel($"https://www.moddrop.com/sdv/mod/467243/{entry.ModDropID}", "ModDrop");
+ yield return new ModLinkModel($"https://www.moddrop.com/sdv/mod/{entry.ModDropID}", "ModDrop");
}
// fallback