summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-04-19 01:23:47 +0300
committerPaul Buetow <paul@buetow.org>2023-04-19 01:23:47 +0300
commit0c1e7d0d12333d61a3b412ff1e17b2fc247409b7 (patch)
tree85bfeda6f48c7f3e1cbdc8f9201ec92d80b1c9de /internal
parent5417f23c40463a1e1ad6d93d1ab69f3590d1b72b (diff)
clarify
Diffstat (limited to 'internal')
-rw-r--r--internal/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/run.go b/internal/run.go
index ccfa8a9..417b81b 100644
--- a/internal/run.go
+++ b/internal/run.go
@@ -17,7 +17,7 @@ func Run(configFile string) {
notifyError(config, err)
}
- if subject, body, changed := state.report(); changed {
+ if subject, body, doNotify := state.report(); doNotify {
notify(config, subject, body)
}
}