Fix: on mstdn.exe toot -i ID: ID (and default) was int64 -> string

This commit is contained in:
Kaoru HAYAMA 2017-10-25 20:26:28 +09:00
parent d38a3e6dfc
commit aaeb9f1de2
2 changed files with 3 additions and 3 deletions

View file

@ -199,10 +199,10 @@ func makeApp() *cli.App {
Usage: "post utf-8 string from a file(\"-\" means STDIN)",
Value: "",
},
cli.IntFlag{
cli.StringFlag{
Name: "i",
Usage: "in-reply-to",
Value: 0,
Value: "",
},
},
Action: cmdToot,