We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901b555 commit 873662fCopy full SHA for 873662f
src/main/java/me/itzg/helpers/modrinth/ProjectRef.java
@@ -50,7 +50,7 @@ public static ProjectRef parse(String projectRef) {
50
if (firstColon > 0) {
51
final String prefix = projectRef.substring(0, firstColon);
52
if (VALID_LOADERS.contains(prefix.toLowerCase())) {
53
- loader = Loader.valueOf(prefix);
+ loader = Loader.valueOf(prefix.toLowerCase());
54
rest = projectRef.substring(firstColon + 1);
55
}
56
0 commit comments