Skip to content

Commit

Permalink
change aldos url back to http for now
Browse files Browse the repository at this point in the history
  • Loading branch information
13xforever committed Jan 26, 2025
1 parent dc58cc5 commit 4fc3b64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IrdLibraryClient/IrdClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected virtual string GetDownloadLink(string irdFilename)
}
catch (Exception e)
{
Log.Warn(e, "Failed to make API call to IRD Library");
Log.Warn(e, $"Failed to make API call to IRD Library {requestUri}");
return [];
}
}
Expand Down
2 changes: 1 addition & 1 deletion IrdLibraryClient/IrdClientAldos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace IrdLibraryClient;

public partial class IrdClientAldos: IrdClient
{
public override Uri BaseUri { get; } = new Uri("https://ps3.aldostools.org/ird/").SetQueryParameters(new Dictionary<string, string>
public override Uri BaseUri { get; } = new Uri("http://ps3.aldostools.org/ird/").SetQueryParameters(new Dictionary<string, string>
{
["F"] = "0",
["_"] = DateTime.UtcNow.Ticks.ToString(),
Expand Down
6 changes: 5 additions & 1 deletion Ps3DiscDumper/DiscKeyProviders/IrdProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ namespace Ps3DiscDumper.DiscKeyProviders;

public class IrdProvider : IDiscKeyProvider
{
private static readonly IIrdClient[] Clients = [new IrdClientFreeFr(), new IrdClientAldos(), new IrdClientFlexby420()];
private static readonly IIrdClient[] Clients = [
new IrdClientFlexby420(),
new IrdClientFreeFr(),
new IrdClientAldos(),
];

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

0 comments on commit 4fc3b64

Please sign in to comment.