Skip to content

Commit

Permalink
Fix compatibility with 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
SenkyDragon authored Dec 9, 2023
1 parent 0c00af9 commit cdbb0a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion com.vrcfury.installer/VRCFuryInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ await InMainThread(() => {

private static void RefreshPackages() {
MethodInfo method = typeof(Client).GetMethod("Resolve",
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public);
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public,
null,
new Type[] {},
null
);
method.Invoke(null, null);
}

Expand Down

0 comments on commit cdbb0a5

Please sign in to comment.