Skip to content

Commit 5b228cf

Browse files
committed
style
1 parent c257fe6 commit 5b228cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FirebaseRemoteConfig/SwiftNew/ConfigRealtime.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class ConfigRealtime: NSObject, URLSessionDataDelegate {
393393
}
394394

395395
@objc private func didEnterBackground() {
396-
realtimeLockQueue.async{ [weak self] in
396+
realtimeLockQueue.async { [weak self] in
397397
guard let self else { return }
398398
self.pauseRealtimeStream()
399399
self.isInBackground = true
@@ -528,7 +528,7 @@ class ConfigRealtime: NSObject, URLSessionDataDelegate {
528528
}
529529

530530
func isStatusCodeRetryable(_ statusCode: Int) -> Bool {
531-
return statusCode == fetchResponseHTTPStatusTooManyRequests ||
531+
return statusCode == fetchResponseHTTPStatusTooManyRequests ||
532532
statusCode == fetchResponseHTTPStatusCodeServiceUnavailable ||
533533
statusCode == fetchResponseHTTPStatusCodeBadGateway ||
534534
statusCode == fetchResponseHTTPStatusCodeGatewayTimeout

0 commit comments

Comments
 (0)