diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-10 14:55:20 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-10 14:55:20 +0300 |
| commit | b6be62b537ebfd3a0e2fa25c93d2408ccb418cb7 (patch) | |
| tree | e638c048d5d1ac3c6a546a8ccc6a9f288fd7bb1b /internal/schedule | |
| parent | 896e7c0e1095be1d4aa1eb60448740ab28d4d760 (diff) | |
Add snonux platform (sno/sn aliases), noop-like posting and share defaults
Snonux posts via noop.Post and is omitted from default share targets unless
share:snonux, share:sno, or share:sn is set. Normalize share tokens through
platform aliases; case-fold ExpandAliases segments. Skip low-queue nag for
snonux like noop.
Made-with: Cursor
Diffstat (limited to 'internal/schedule')
| -rw-r--r-- | internal/schedule/schedule.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/schedule/schedule.go b/internal/schedule/schedule.go index 0e3e8b3..b787b7f 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 platform != "noop" && stats.queued < args.MinQueued { + if platform != "noop" && platform != "snonux" && stats.queued < args.MinQueued { _ = prompt.Acknowledge( fmt.Sprintf("There are only %d messages queued for %s - time to fill it up!", stats.queued, platform), |
