Skip to content

Commit be30247

Browse files
committed
Send forceUpdate parameter as positional arg instead of named arg to prevent "VersionHandlerImpl.UpdateVersionedAssets not found"
1 parent 28401e9 commit be30247

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

source/VersionHandler/src/VersionHandler.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,7 @@ public static string[] FindAllAssets() {
381381
/// </summary>
382382
public static void UpdateVersionedAssets(bool forceUpdate = false) {
383383
InvokeImplMethod("UpdateVersionedAssets",
384-
namedArgs: new Dictionary<string, object> {
385-
{ "forceUpdate", forceUpdate }
386-
},
384+
args: new object[] { forceUpdate },
387385
schedule: true);
388386
}
389387

0 commit comments

Comments
 (0)