pull/64/head
Yasuhiro Matsumoto 2017-10-25 15:23:53 +09:00
parent aef736e991
commit a7e10ddba4
1 changed files with 1 additions and 6 deletions

View File

@ -3,7 +3,6 @@ package main
import (
"context"
"errors"
"strconv"
"github.com/mattn/go-mastodon"
"github.com/urfave/cli"
@ -15,11 +14,7 @@ func cmdDelete(c *cli.Context) error {
return errors.New("arguments required")
}
for i := 0; i < c.NArg(); i++ {
id, err := strconv.ParseInt(c.Args().Get(i), 10, 64)
if err != nil {
return err
}
err = client.DeleteStatus(context.Background(), id)
err := client.DeleteStatus(context.Background(), mastodon.ID(c.Args().Get(i)))
if err != nil {
return err
}