This commit is contained in:
Jim LAURIE 2019-12-17 15:14:17 +01:00
parent 81cf5c4ecd
commit c79106bff8

View File

@ -59,7 +59,7 @@ module.exports = async (ctx, next) => {
const [token] = await strapi.query('token').find({token: ctx.request.query.token});
if (!token) {
throw new Error('Invalid token: This token not exist');
throw new Error(`Invalid token: This token doesn't exist`);
} else {
if (token.user && typeof token.token === 'string') {
id = token.user.id;