diff options
Diffstat (limited to 'internal/queue/queue.go')
| -rw-r--r-- | internal/queue/queue.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/queue/queue.go b/internal/queue/queue.go index 33b5bf7..43a017c 100644 --- a/internal/queue/queue.go +++ b/internal/queue/queue.go @@ -50,10 +50,10 @@ func queueEntries(args config.Args) error { return err } if !hasHashtags { - if err := en.FileAction("Do you want to queue this despite there are no Hashtags?"); err != nil { - return err - } - } else if en.HasTag("ask") { + colour.Warnf("The following entry has got no hashtags:") + fmt.Printf("\n") + } + if !hasHashtags || en.HasTag("ask") { if err := en.FileAction("Do you want to queue this"); err != nil { return err } |
