Skip to content

Commit

Permalink
Fix users in China being unable to use the mod
Browse files Browse the repository at this point in the history
- China seems to block https://raw.githubusercontent.com/ so the localized string download fails with a NXDOMAIN error.
- This fix makes language file downloads non-essential for the time being so sba can still launch.
  • Loading branch information
ILikePlayingGames committed Mar 12, 2022
1 parent 7086c94 commit ba1a63b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -21,7 +21,7 @@ public LocalizedStringsRequest(@NonNull Language language) {
"https://raw.githubusercontent.com/BiscuitDevelopment/SkyblockAddons/development/src/main/resources/lang/%s.json",
language.getPath()),
new JSONResponseHandler<>(JsonObject.class),
true, true);
false, true);
LANGUAGE = language;
}

Expand Down

0 comments on commit ba1a63b

Please sign in to comment.