Skip to content

Commit 4ddc3d4

Browse files
authored
Fix #110
1 parent f8e5ff9 commit 4ddc3d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

NodeNetwork/NNViewRegistrar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static void RegisterToLocator(Action<Func<object>, Type> newRegisterActio
5252
_registerAction = newRegisterAction;
5353
foreach (var t in PendingRegistrations)
5454
{
55-
_registerAction(t.Item1, t.GetType());
55+
_registerAction(t.Item1, t.Item2);
5656
}
5757
PendingRegistrations.Clear();
5858
}

0 commit comments

Comments
 (0)