We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013cbb1 commit a6652afCopy full SHA for a6652af
2 files changed
SabreTools.RedumpLib/Data/Constants.cs
@@ -220,11 +220,6 @@ public static class Constants
220
/// </summary>
221
public const string UserDumpsLastModifiedUrl = @"http://redump.org/discs/sort/modified/dir/desc/dumper/{0}?page={1}";
222
223
- /// <summary>
224
- /// Redump WIP dumps queue URL
225
- /// </summary>
226
- public const string WipDumpsUrl = @"http://redump.org/discs-wip/";
227
-
228
#endregion
229
}
230
SabreTools.RedumpLib/Web/RedumpClient.cs
@@ -499,7 +499,7 @@ public RedumpClient()
499
500
501
// Try to retrieve the data
502
- string url = Constants.WipDumpsUrl;
+ string url = UrlBuilder.BuildDiscsWipUrl();
503
string? dumpsPage = await DownloadString(url);
504
505
// If the web client failed, return null
0 commit comments