Fix potential null ref in RedisHublifetimeManager RemoveGroup (#706)

This commit is contained in:
Mikael Mengistu 2017-08-10 09:54:26 -07:00 committed by GitHub
parent 8cda36157f
commit eb008a0dfe
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ namespace Microsoft.AspNetCore.SignalR.Redis
} }
var connection = _connections[connectionId]; var connection = _connections[connectionId];
if (connection != null) if (connection == null)
{ {
return; return;
} }