Skip to content

Commit 0f1df80

Browse files
committed
Fix .gif seesaw
1 parent 484a2f7 commit 0f1df80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/prefixed/image/gif.seesaw.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface CommandArgs {
1616

1717
export const COMMAND_NAME = 'gif seesaw';
1818

19-
export default class GifSeeSawCommand extends BaseImageCommand<Formatter.Commands.ImageGifReverse.CommandArgs> {
19+
export default class GifSeeSawCommand extends BaseImageCommand<Formatter.Commands.ImageGifSeeSaw.CommandArgs> {
2020
constructor(client: CommandClient) {
2121
super(client, {
2222
name: COMMAND_NAME,
@@ -33,7 +33,7 @@ export default class GifSeeSawCommand extends BaseImageCommand<Formatter.Command
3333
});
3434
}
3535

36-
async run(context: Command.Context, args: Formatter.Commands.ImageGifReverse.CommandArgs) {
37-
return Formatter.Commands.ImageGifReverse.createMessage(context, args);
36+
async run(context: Command.Context, args: Formatter.Commands.ImageGifSeeSaw.CommandArgs) {
37+
return Formatter.Commands.ImageGifSeeSaw.createMessage(context, args);
3838
}
3939
}

0 commit comments

Comments
 (0)