Skip media downloads during calls.

This commit is contained in:
Matthew Chen 2021-01-20 13:42:30 -03:00
parent aded9119b8
commit a4b2ba0e2b

View File

@ -426,6 +426,10 @@ NSString *const ReportedApplicationStateDidChangeNotification = @"ReportedApplic
- (BOOL)hasActiveCall
{
if (!AppReadiness.isAppReady) {
OWSFailDebug(@"App is not ready.");
return NO;
}
return AppEnvironment.shared.callService.hasCallInProgress;
}