mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-01 13:20:41 +01:00
fix: invalid API call when unfollowing a user
This commit is contained in:
@@ -116,7 +116,7 @@ define('forum/account/header', [
|
||||
}
|
||||
|
||||
function toggleFollow(type) {
|
||||
api[type === 'follow' ? 'put' : 'delete']('/users/' + ajaxify.data.uid + '/follow', undefined, function (err) {
|
||||
api[type === 'follow' ? 'put' : 'del']('/users/' + ajaxify.data.uid + '/follow', undefined, function (err) {
|
||||
if (err) {
|
||||
return app.alertError(err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user