Skip to content
This repository has been archived by the owner on Nov 22, 2020. It is now read-only.

Commit

Permalink
Update Harpy.m (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
liyangdal authored and ArtSabintsev committed Dec 12, 2017
1 parent 986efcd commit 4887528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Harpy/Harpy.m
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ - (void)checkVersionDaily {
}

// If daily condition is satisfied, perform version check
if ([self numberOfDaysElapsedBetweenLastVersionCheckDate] > 1) {
if ([self numberOfDaysElapsedBetweenLastVersionCheckDate] >= 1) {
[self checkVersion];
}
}
Expand All @@ -146,7 +146,7 @@ - (void)checkVersionWeekly {
}

// If weekly condition is satisfied, perform version check
if ([self numberOfDaysElapsedBetweenLastVersionCheckDate] > 7) {
if ([self numberOfDaysElapsedBetweenLastVersionCheckDate] >= 7) {
[self checkVersion];
}
}
Expand Down

0 comments on commit 4887528

Please sign in to comment.