Added more unit tests for members resource
This commit is contained in:
@ -163,7 +163,10 @@ namespace Aurora.Services.Server.EventManager
|
||||
public void CancelEventStream(string sessionIdentifierId)
|
||||
{
|
||||
_actionList.TryGetValue(sessionIdentifierId, out EventAction value);
|
||||
value.Cancel();
|
||||
if (value != null)
|
||||
{
|
||||
value.Cancel();
|
||||
}
|
||||
|
||||
RemoveEventHandler(sessionIdentifierId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user