fix(core): don't auto-remove a subscription if any source is in error

This commit is contained in:
Francis Lachapelle
2022-05-11 16:29:49 -04:00
parent ab5f5abc80
commit 373ac51e62
6 changed files with 65 additions and 11 deletions
+5
View File
@@ -497,6 +497,11 @@ groupObjectClasses: (NSArray *) newGroupObjectClasses
return (NGLdapConnection *)[self connection];
}
- (BOOL) isConnected
{
return [[self _ldapConnection] isBound];
}
- (void) releaseConnection: (id) connection
{
if ([(NGLdapConnection *)connection isBound])