Skip to content

Commit 17f79e9

Browse files
committed
Fixed negation not required (slipped in somehow)
1 parent 920204c commit 17f79e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parse/Public/ParseInstallation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ protected override Task SaveAsync(Task toAwait, CancellationToken cancellationTo
284284
return base.SaveAsync(toAwait, cancellationToken);
285285
}).Unwrap().OnSuccess(_ =>
286286
{
287-
if (!CurrentInstallationController.IsCurrent(this))
287+
if (CurrentInstallationController.IsCurrent(this))
288288
{
289289
return Task.FromResult(0);
290290
}

0 commit comments

Comments
 (0)