diff --git a/bot.go b/bot.go index cbf71a2..2eb34a5 100644 --- a/bot.go +++ b/bot.go @@ -171,6 +171,9 @@ func RunBot() { mID := mastodon.ID((args[2])) switch args[1] { + case "boost": + c.Reblog(ctx, mID) + WarnLogger.Printf("%s was rebloged", mID) case "unboost": c.Unreblog(ctx, mID) WarnLogger.Printf("%s was unrebloged", mID)