From 47d8bb3e6d6e1ff7bc3424986316348cf583ab3d Mon Sep 17 00:00:00 2001 From: Rob Loranger Date: Tue, 10 Sep 2019 11:06:43 -0700 Subject: [PATCH] wf/post list: draft posts not anonymous --- commands/commands.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commands/commands.go b/commands/commands.go index 751e984..29ddc21 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -207,7 +207,11 @@ func CmdListPosts(c *cli.Context) error { } if len(remotePosts) > 0 { - fmt.Println("Anonymous Posts") + if c.App.Name == "wf" { + fmt.Println("Draft Posts") + } else { + fmt.Println("Anonymous Posts") + } if details { identifier := "URL" if ids || !urls {