diff --git a/src/util/Util.js b/src/util/Util.js index 930c19490..9e82f77c3 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -70,7 +70,7 @@ class Util extends null { * @returns {string[]} */ static splitMessage(text, { maxLength = 2000, char = '\n', prepend = '', append = '' } = {}) { - text = Util.verifyString(text, RangeError, 'MESSAGE_CONTENT_TYPE', false); + text = Util.verifyString(text); if (text.length <= maxLength) return [text]; let splitText = [text]; if (Array.isArray(char)) {