Well, assuming the problem lies in the disconnect between your null check and the actual state of the lobbyView variable, I might try making the check explicitly for null, so if (lobbyView != null) rather than if (lobbyView). Not that these shouldn’t be equivalent in this case, but I’m not sure what...