We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c1916 commit c331244Copy full SHA for c331244
Shared/Sources/Shared/URLEntry.swift
@@ -34,7 +34,8 @@ public struct URLEntry {
34
guard let unmuteDate = unmuteDate else {
35
return false
36
}
37
- return unmuteDate < Date()
+ // If the unmuteDate is in the future, we are still muted
38
+ return unmuteDate > Date()
39
}()
40
41
urlwatcher/Sources/urlwatcher/main.swift
@@ -36,6 +36,7 @@ for i in 0..<config.count {
// If the entry is muted, we skip it
if (entry.isMuted) {
+ print("Entry is still muted. Skipping...")
continue
42
0 commit comments