Skip to content

Commit

Permalink
Fix multiconnect compat. Closes #471
Browse files Browse the repository at this point in the history
  • Loading branch information
Earthcomputer committed Dec 8, 2022
1 parent b0f4a37 commit 7c740e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private MulticonnectCompat() {
return null;
}
try {
return clazz.getMethod("getInstance").invoke(null);
return clazz.getMethod("instance").invoke(null);
} catch (ReflectiveOperationException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 7c740e8

Please sign in to comment.