1
0
mirror of https://github.com/writeas/writeas-cli synced 2025-07-26 23:08:16 +00:00

wf/post list: draft posts not anonymous

This commit is contained in:
Rob Loranger 2019-09-10 11:06:43 -07:00
parent 05380e618f
commit 47d8bb3e6d
No known key found for this signature in database
GPG Key ID: D6F1633A4F0903B8

View File

@ -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 {