Skip to content

Commit

Permalink
Fixed a bug, when null check would be false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
bustedbunny committed Feb 20, 2023
1 parent d68d5a2 commit bd6be1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Runtime/Binding/Localization/Source/BindingSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ public bool TryEvaluateSelector(ISelectorInfo selectorInfo)
break;
}

return false;
if (bindingGroup is null)
return false;
}


Expand Down

0 comments on commit bd6be1e

Please sign in to comment.