diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-07-24 22:08:15 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 18:59:10 -0400 |
commit | 890c6b3ea7c4aedf4a9130aceff8d80c78bd6e0f (patch) | |
tree | 750bb4aaaf2fba24ed3846ae82ecac88fd75a82c /src/SMAPI.Web/Framework/Clients | |
parent | 08d83aa039dd57efcc6ab50595fe5c0ea1003527 (diff) | |
download | SMAPI-890c6b3ea7c4aedf4a9130aceff8d80c78bd6e0f.tar.gz SMAPI-890c6b3ea7c4aedf4a9130aceff8d80c78bd6e0f.tar.bz2 SMAPI-890c6b3ea7c4aedf4a9130aceff8d80c78bd6e0f.zip |
rename Nexus API client for upcoming API usage (#651)
Diffstat (limited to 'src/SMAPI.Web/Framework/Clients')
-rw-r--r-- | src/SMAPI.Web/Framework/Clients/Nexus/NexusClient.cs (renamed from src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs b/src/SMAPI.Web/Framework/Clients/Nexus/NexusClient.cs index 061de5de..87393367 100644 --- a/src/SMAPI.Web/Framework/Clients/Nexus/NexusWebScrapeClient.cs +++ b/src/SMAPI.Web/Framework/Clients/Nexus/NexusClient.cs @@ -10,7 +10,7 @@ using StardewModdingAPI.Toolkit; namespace StardewModdingAPI.Web.Framework.Clients.Nexus { /// <summary>An HTTP client for fetching mod metadata from the Nexus website.</summary> - internal class NexusWebScrapeClient : INexusClient + internal class NexusClient : INexusClient { /********* ** Fields @@ -33,7 +33,7 @@ namespace StardewModdingAPI.Web.Framework.Clients.Nexus /// <param name="baseUrl">The base URL for the Nexus Mods site.</param> /// <param name="modUrlFormat">The URL for a Nexus Mods mod page for the user, excluding the <paramref name="baseUrl"/>, where {0} is the mod ID.</param> /// <param name="modScrapeUrlFormat">The URL for a Nexus mod page to scrape for versions, excluding the base URL, where {0} is the mod ID.</param> - public NexusWebScrapeClient(string userAgent, string baseUrl, string modUrlFormat, string modScrapeUrlFormat) + public NexusClient(string userAgent, string baseUrl, string modUrlFormat, string modScrapeUrlFormat) { this.ModUrlFormat = modUrlFormat; this.ModScrapeUrlFormat = modScrapeUrlFormat; |