Fix: on mstdn.exe toot -i ID
: ID (and default) was int64 -> string
This commit is contained in:
parent
d38a3e6dfc
commit
aaeb9f1de2
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue