Skip to content

Commit

Permalink
fix: incorrect call to load additional group members
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam committed Dec 1, 2023
1 parent dbbf3a2 commit 78835eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/src/client/groups/memberlist.js
Expand Up @@ -122,7 +122,7 @@ define('forum/groups/memberlist', ['api', 'bootbox', 'alerts'], function (api, b
}

members.attr('loading', 1);
api.get(`/groups/${groupName}/members`, {
api.get(`/groups/${ajaxify.data.group.slug}/members`, {
after: members.attr('data-nextstart'),
}, function (err, data) {
if (err) {
Expand Down

0 comments on commit 78835eb

Please sign in to comment.