diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-04 21:05:50 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-04 21:05:50 -0500 |
commit | 0a71285c631a6ef52ea381c35224f353a618e3fa (patch) | |
tree | 60201304919b95501bb03eb05aa0085d2920c3db /src/SMAPI.Web/Framework/Clients/Nexus | |
parent | 99023f94871e1f9bad5ee5f5db0ff041a02e9ed5 (diff) | |
download | SMAPI-0a71285c631a6ef52ea381c35224f353a618e3fa.tar.gz SMAPI-0a71285c631a6ef52ea381c35224f353a618e3fa.tar.bz2 SMAPI-0a71285c631a6ef52ea381c35224f353a618e3fa.zip |
fix broken Nexus mod URLs
Diffstat (limited to 'src/SMAPI.Web/Framework/Clients/Nexus')
-rw-r--r-- | src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs b/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs index 1e941e3d..d0597965 100644 --- a/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs +++ b/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs @@ -72,7 +72,7 @@ namespace StardewModdingAPI.Web.Framework.Clients.Nexus } // extract mod info - string url = new UriBuilder(this.Client.BaseClient.BaseAddress) { Path = string.Format(this.ModUrlFormat, id) }.Uri.ToString(); + string url = this.GetModUrl(id); string name = doc.DocumentNode.SelectSingleNode("//h1")?.InnerText.Trim(); string version = doc.DocumentNode.SelectSingleNode("//ul[contains(@class, 'stats')]//li[@class='stat-version']//div[@class='stat']")?.InnerText.Trim(); @@ -89,5 +89,18 @@ namespace StardewModdingAPI.Web.Framework.Clients.Nexus { this.Client?.Dispose(); } + + + /********* + ** Private methods + *********/ + /// <summary>Get the full mod page URL for a given ID.</summary> + /// <param name="id">The mod ID.</param> + private string GetModUrl(uint id) + { + UriBuilder builder = new UriBuilder(this.Client.BaseClient.BaseAddress); + builder.Path += string.Format(this.ModUrlFormat, id); + return builder.Uri.ToString(); + } } } |