diff options
Diffstat (limited to 'worker/notmuch/worker.go')
-rw-r--r-- | worker/notmuch/worker.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/worker/notmuch/worker.go b/worker/notmuch/worker.go index 96adc29..be213bf 100644 --- a/worker/notmuch/worker.go +++ b/worker/notmuch/worker.go @@ -387,6 +387,10 @@ func (w *worker) loadQueryMap(acctConfig *config.AccountConfig) error { scanner := bufio.NewScanner(f) for scanner.Scan() { line := scanner.Text() + if line == "" || line[0] == '#' { + continue + } + split := strings.SplitN(line, "=", 2) if len(split) != 2 { return fmt.Errorf("invalid line %q, want name=query", line) |