mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
Fix type error
This commit is contained in:
parent
8e2808d42c
commit
18e321f5bb
1 changed files with 2 additions and 3 deletions
|
@ -4,7 +4,7 @@ import yaml from "js-yaml";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
const fsp = fs.promises;
|
const fsp = fs.promises;
|
||||||
|
|
||||||
import { Knub, logger, PluginError } from "knub";
|
import { Knub, logger, PluginError, CommandArgumentTypeError } from "knub";
|
||||||
import { SimpleError } from "./SimpleError";
|
import { SimpleError } from "./SimpleError";
|
||||||
|
|
||||||
require("dotenv").config();
|
require("dotenv").config();
|
||||||
|
@ -75,7 +75,6 @@ import { PingableRolesPlugin } from "./plugins/PingableRolesPlugin";
|
||||||
import { SelfGrantableRolesPlugin } from "./plugins/SelfGrantableRolesPlugin";
|
import { SelfGrantableRolesPlugin } from "./plugins/SelfGrantableRolesPlugin";
|
||||||
import { RemindersPlugin } from "./plugins/Reminders";
|
import { RemindersPlugin } from "./plugins/Reminders";
|
||||||
import { convertDelayStringToMS } from "./utils";
|
import { convertDelayStringToMS } from "./utils";
|
||||||
import { CommandValueTypeError } from "knub/dist/commandUtils";
|
|
||||||
|
|
||||||
// Run latest database migrations
|
// Run latest database migrations
|
||||||
logger.info("Running database migrations");
|
logger.info("Running database migrations");
|
||||||
|
@ -162,7 +161,7 @@ connect().then(async conn => {
|
||||||
delay(value) {
|
delay(value) {
|
||||||
const result = convertDelayStringToMS(value);
|
const result = convertDelayStringToMS(value);
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
throw new CommandValueTypeError(`Could not convert ${value} to a delay`);
|
throw new CommandArgumentTypeError(`Could not convert ${value} to a delay`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Reference in a new issue