|
|
@ -168,15 +168,19 @@ static NSString *const kURLHostVerifyPrefix = @"verify";
|
|
|
|
[AppStoreRating setupRatingLibrary];
|
|
|
|
[AppStoreRating setupRatingLibrary];
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
|
|
[[TSAccountManager sharedInstance] ifRegistered:NO runAsync:^{
|
|
|
|
[[TSAccountManager sharedInstance]
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
ifRegistered:NO
|
|
|
|
UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:[Pastelog class]
|
|
|
|
runAsync:^{
|
|
|
|
action:@selector(submitLogs)];
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
gesture.numberOfTapsRequired = 8;
|
|
|
|
[TSSocketManager requestSocketOpen];
|
|
|
|
[self.window addGestureRecognizer:gesture];
|
|
|
|
|
|
|
|
});
|
|
|
|
UITapGestureRecognizer *gesture =
|
|
|
|
RTCInitializeSSL();
|
|
|
|
[[UITapGestureRecognizer alloc] initWithTarget:[Pastelog class] action:@selector(submitLogs)];
|
|
|
|
}];
|
|
|
|
gesture.numberOfTapsRequired = 8;
|
|
|
|
|
|
|
|
[self.window addGestureRecognizer:gesture];
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
RTCInitializeSSL();
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|