Skip to content

Commit

Permalink
- Shortcut error message
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Mar 21, 2023
1 parent 09abc02 commit 517dbc7
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,7 @@ private static async Task<string> DecodeResponse(IHtmlDocument htmlDocument, Htt
s.Source?.Contains("app.min.js") == true ||
s.Source?.Contains("app.obf.js") == true ||
s.Source?.Contains("app.obf.min.js") == true
);

if (appJsScript is null)
{
throw new Exception("Couldn't find the right JavaScript files");
}
) ?? throw new Exception("Couldn't find the right JavaScript files");

Obfuscated = appJsScript.Source.Contains("obf.");

Expand Down

0 comments on commit 517dbc7

Please sign in to comment.