Minor refactoring

This commit is contained in:
nielsandriesse 2020-07-14 11:27:16 +10:00
parent 9213e2b770
commit 4b34a6624e
1 changed files with 6 additions and 4 deletions

View File

@ -1386,8 +1386,9 @@ static NSTimeInterval launchStartedAt;
{
if (self.poller == nil) {
NSString *userPublicKey = OWSIdentityManager.sharedManager.identityKeyPair.hexEncodedPublicKey;
if (userPublicKey == nil) { return; }
self.poller = [[LKPoller alloc] init];
if (userPublicKey != nil) {
self.poller = [[LKPoller alloc] init];
}
}
[self.poller startIfNeeded];
}
@ -1398,8 +1399,9 @@ static NSTimeInterval launchStartedAt;
{
if (self.closedGroupPoller == nil) {
NSString *userPublicKey = OWSIdentityManager.sharedManager.identityKeyPair.hexEncodedPublicKey;
if (userPublicKey == nil) { return; }
self.closedGroupPoller = [[LKClosedGroupPoller alloc] init];
if (userPublicKey != nil) {
self.closedGroupPoller = [[LKClosedGroupPoller alloc] init];
}
}
[self.closedGroupPoller startIfNeeded];
}