Skip to content

Commit

Permalink
Fix lint, again...
Browse files Browse the repository at this point in the history
  • Loading branch information
russellhancox committed May 28, 2024
1 parent 66ad2d6 commit 0c57d50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/santasyncservice/SNTSyncPreflight.mm
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ - (BOOL)sync {
value = resp.deprecated_fcm_global_rule_sync_deadline();
}
self.syncState.pushNotificationsGlobalRuleSyncDeadline =
(value < kDefaultPushNotificationsGlobalRuleSyncDeadline) ? kDefaultPushNotificationsGlobalRuleSyncDeadline : value;
(value < kDefaultPushNotificationsGlobalRuleSyncDeadline)
? kDefaultPushNotificationsGlobalRuleSyncDeadline
: value;

// Check if our sync interval has changed
value = resp.full_sync_interval();
Expand Down

0 comments on commit 0c57d50

Please sign in to comment.