Skip to content

Commit

Permalink
whoops, got this sign backwards
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Nov 15, 2022
1 parent 8f0abc2 commit 8858159
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gardening.omnifocusjs/Resources/pick.js
Expand Up @@ -50,7 +50,7 @@
weight() {
let lastCheck = this.pref.readDate(this.prefKey);
if (lastCheck &&
hoursBetween(lastCheck, new Date()) > this.onlyEveryHours) {
hoursBetween(lastCheck, new Date()) < this.onlyEveryHours) {
return null;
}
return 5;
Expand Down
2 changes: 1 addition & 1 deletion Gardening.omnifocusjs/Resources/pick.ts
Expand Up @@ -72,7 +72,7 @@
let lastCheck = this.pref.readDate(this.prefKey);
if (
lastCheck &&
hoursBetween(lastCheck, new Date()) > this.onlyEveryHours
hoursBetween(lastCheck, new Date()) < this.onlyEveryHours
) {
return null;
}
Expand Down

0 comments on commit 8858159

Please sign in to comment.