Skip to content

Commit

Permalink
Fix: Incorrect URL match for level list
Browse files Browse the repository at this point in the history
  • Loading branch information
Moresteck committed Oct 7, 2024
1 parent b157498 commit c90f910
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@SuppressWarnings("all")
public class LevelListHandler extends HandlerBase {
private static final Pattern LEVEL_LIST_PATTERN = Pattern.compile("(http:\\/\\/(www\\.)?minecraft\\.net(:(.+)?)?\\/game\\/listmaps\\.jsp\\?user=(.+)?)");
private static final Pattern LEVEL_LIST_PATTERN = Pattern.compile("(http:\\/\\/(www\\.)?minecraft\\.net(:(.+)?)?\\/listmaps\\.jsp\\?user=(.+)?)");

protected static final String LEVELS_DIR_PATH = System.getProperty("lf.levelsDir", LegacyFixAgent.getGameDir() + "/levels");

Expand Down

0 comments on commit c90f910

Please sign in to comment.