Skip to content

Commit a6652af

Browse files
committed
Replace discs-wip with URL builder
1 parent 013cbb1 commit a6652af

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

SabreTools.RedumpLib/Data/Constants.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,6 @@ public static class Constants
220220
/// </summary>
221221
public const string UserDumpsLastModifiedUrl = @"http://redump.org/discs/sort/modified/dir/desc/dumper/{0}?page={1}";
222222

223-
/// <summary>
224-
/// Redump WIP dumps queue URL
225-
/// </summary>
226-
public const string WipDumpsUrl = @"http://redump.org/discs-wip/";
227-
228223
#endregion
229224
}
230225
}

SabreTools.RedumpLib/Web/RedumpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public RedumpClient()
499499
}
500500

501501
// Try to retrieve the data
502-
string url = Constants.WipDumpsUrl;
502+
string url = UrlBuilder.BuildDiscsWipUrl();
503503
string? dumpsPage = await DownloadString(url);
504504

505505
// If the web client failed, return null

0 commit comments

Comments
 (0)