Skip to content
This repository has been archived by the owner on Jul 3, 2021. It is now read-only.

Commit

Permalink
Fix: endpoint for waitlist unban missing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
thedark1337 committed Sep 28, 2017
1 parent 00af49c commit cb6825c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -2948,7 +2948,7 @@ class PlugAPI extends EventEmitter3 {
return false;
}

store(this)._queueREST('DELETE', endpoints.MODERATE_WLBAN + uid, undefined, callback);
store(this)._queueREST('DELETE', `${endpoints.MODERATE_WLBAN}/${uid}`, undefined, callback);

return true;
}
Expand Down

0 comments on commit cb6825c

Please sign in to comment.