I’m not sure where to ask this but this video’s as good as any, since it’s also happening here. Usually with actions, they’re wrapped in a null check, but this one isn’t. How come? I would expect:
if(onConversationUpdated != null)
{
onConversationUpdated();
}
I would prefer if we didn’t have to do a null check every time, honestly, but this was surprising