mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
Fix usage of 'this' in FollowCmd
This commit is contained in:
parent
ccff7384ba
commit
b1f9b54be4
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import { commandTypeHelpers as ct } from "../../../commandTypes";
|
||||||
import moment from "moment-timezone";
|
import moment from "moment-timezone";
|
||||||
import humanizeDuration from "humanize-duration";
|
import humanizeDuration from "humanize-duration";
|
||||||
import { MINUTES, SECONDS } from "src/utils";
|
import { MINUTES, SECONDS } from "src/utils";
|
||||||
import { sendSuccessMessage } from "src/pluginUtils";
|
import { sendErrorMessage, sendSuccessMessage } from "src/pluginUtils";
|
||||||
|
|
||||||
export const FollowCmd = locateUserCommand({
|
export const FollowCmd = locateUserCommand({
|
||||||
trigger: ["follow", "f"],
|
trigger: ["follow", "f"],
|
||||||
|
@ -26,7 +26,7 @@ export const FollowCmd = locateUserCommand({
|
||||||
const active = args.active || false;
|
const active = args.active || false;
|
||||||
|
|
||||||
if (time < 30 * SECONDS) {
|
if (time < 30 * SECONDS) {
|
||||||
this.sendErrorMessage(msg.channel, "Sorry, but the minimum duration for an alert is 30 seconds!");
|
sendErrorMessage(pluginData, msg.channel, "Sorry, but the minimum duration for an alert is 30 seconds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue