This commit is contained in:
Dragon Fire
2020-12-09 21:37:47 -05:00
parent 21c7cd924b
commit 50611d8bd9
+1 -1
View File
@@ -8,7 +8,7 @@ module.exports = class SherlockType extends ArgumentType {
validate(value) {
const time = sherlock.parse(value);
if (!time.startDate) return `Please provide a valid starting time.`;
if (!time.startDate) return 'Please provide a valid starting time.';
return true;
}