Skip to content

Commit 4fc3b64

Browse files
committed
change aldos url back to http for now
1 parent dc58cc5 commit 4fc3b64

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

IrdLibraryClient/IrdClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected virtual string GetDownloadLink(string irdFilename)
3434
}
3535
catch (Exception e)
3636
{
37-
Log.Warn(e, "Failed to make API call to IRD Library");
37+
Log.Warn(e, $"Failed to make API call to IRD Library {requestUri}");
3838
return [];
3939
}
4040
}

IrdLibraryClient/IrdClientAldos.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IrdLibraryClient;
44

55
public partial class IrdClientAldos: IrdClient
66
{
7-
public override Uri BaseUri { get; } = new Uri("https://ps3.aldostools.org/ird/").SetQueryParameters(new Dictionary<string, string>
7+
public override Uri BaseUri { get; } = new Uri("http://ps3.aldostools.org/ird/").SetQueryParameters(new Dictionary<string, string>
88
{
99
["F"] = "0",
1010
["_"] = DateTime.UtcNow.Ticks.ToString(),

Ps3DiscDumper/DiscKeyProviders/IrdProvider.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ namespace Ps3DiscDumper.DiscKeyProviders;
1111

1212
public class IrdProvider : IDiscKeyProvider
1313
{
14-
private static readonly IIrdClient[] Clients = [new IrdClientFreeFr(), new IrdClientAldos(), new IrdClientFlexby420()];
14+
private static readonly IIrdClient[] Clients = [
15+
new IrdClientFlexby420(),
16+
new IrdClientFreeFr(),
17+
new IrdClientAldos(),
18+
];
1519

1620
public async Task<HashSet<DiscKeyInfo>> EnumerateAsync(string discKeyCachePath, string productCode, CancellationToken cancellationToken)
1721
{

0 commit comments

Comments
 (0)