hotFix(logout): correct order #43

Merged
juan merged 2 commits from hotFix_correctOrder_logout into master 2023-07-28 11:25:16 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -85,8 +85,8 @@ module.exports = new Class({
const config = {
headers: {'Authorization': token}
};
await this.post('Accounts/logout', null, config);
await this.send('user/logout');
await this.post('Accounts/logout', null, config);
}
},