Skip to content

Commit

Permalink
Fixed more GHA Tests (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronelm2000 committed Dec 14, 2021
1 parent bf86d67 commit 378efed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Montage.Weiss.Tools.Entities.External.DeckLog
{
public class DeckLogSettings
{
public string Version { get; set; } = "20211022.001";
public string Version { get; set; } = "20211207.001";
public string Authority { get; set; } = "https://decklog.bushiroad.com/";
public Regex DeckURLMatcher { get; set; } = new Regex(@"(.*):\/\/decklog\.bushiroad\.com\/view\/([^\?]*)(.*)");
public string VersionURL { get; set; } = "https://decklog.bushiroad.com/system/app/api/version/";
Expand All @@ -20,7 +20,7 @@ public class DeckLogSettings
public static DeckLogSettings Japanese => new();
public static DeckLogSettings English => new DeckLogSettings
{
Version = "20210907.001",
Version = "20211207.001",
Authority = "https://decklog-en.bushiroad.com/",
DeckURLMatcher = new Regex(@"(.*):\/\/decklog-en\.bushiroad\.com\/view\/([^\?]*)(.*)"),
CardParamURL = "https://decklog-en.bushiroad.com/system/app/api/cardparam/2",
Expand Down

0 comments on commit 378efed

Please sign in to comment.