4.8 Transition Guide

You can clear any previous use of the delegate, before using it again, using code similar to this:



IOnlineSubsystem* OnlineSub = IOnlineSubsystem::Get();
if (OnlineSub)
{
	IOnlineSessionPtr Sessions = OnlineSub->GetSessionInterface();
	Sessions->**ClearOnStartSessionCompleteDelegate_Handle**(OnStartSessionCompleteDelegateHandle);
}


And the create your new use of the delegate afterward.

Good luck!

:slight_smile: