summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/schedule/schedule.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/schedule/schedule.go b/internal/schedule/schedule.go
index 109527b..9ec892c 100644
--- a/internal/schedule/schedule.go
+++ b/internal/schedule/schedule.go
@@ -29,7 +29,7 @@ func Run(args config.Args, platform platforms.Platform) (entry.Entry, error) {
}
stats.RenderTable(platform)
- if stats.queued < args.MinQueued {
+ if platform != "noop" && stats.queued < args.MinQueued {
_ = prompt.Acknowledge(
fmt.Sprintf("There are only %d messages queued for %s - time to fill it up!",
stats.queued, platform),