fix(*): Update ud command error message when making GET request

This commit is contained in:
Olly Nicholass
2021-01-15 12:25:43 +00:00
parent 0cfaf2c240
commit 40553fd0af
+1 -1
View File
@@ -87,7 +87,7 @@ function commandUrbanDictionary(Discord, config, logger, message, command, args)
} }
}) })
.catch(function (error) { .catch(function (error) {
logger.error('Something went wrong', error); logger.error('Failed to make GET request to Urban Dictionary API', error);
}); });
} }
} }