diff --git a/commands/search/wikihow.js b/commands/search/wikihow.js index 9e7bba63..1e8b43b4 100644 --- a/commands/search/wikihow.js +++ b/commands/search/wikihow.js @@ -15,7 +15,7 @@ module.exports = class WikihowCommand extends Command { key: 'query', prompt: 'What article would you like to search for?', type: 'string', - parse: query => query.replace(/^((how )?to)/i, '') + parse: query => query.replace(/^((how )?to )/i, '') } ] }); diff --git a/package.json b/package.json index cca7c571..a2cde329 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "81.0.1", + "version": "81.0.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/dragonfire535/xiao#readme", "engines": { - "node": ">=8.0.0" + "node": ">=10.1.0" }, "dependencies": { "canvas": "github:automattic/node-canvas", @@ -43,7 +43,7 @@ "pg": "^6.4.2", "pg-hstore": "^2.3.2", "random-js": "^1.0.8", - "sequelize": "^4.37.10", + "sequelize": "^4.38.0", "uws": "^10.148.1", "zlib-sync": "^0.1.4" },