Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dpp/cluster/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void cluster::channel_invite_create(const class channel &c, const class invite &
}

void cluster::channel_invites_get(const class channel &c, command_completion_event_t callback) {
rest_request_list<invite>(this, API_PATH "/channels", std::to_string(c.id), "", m_get, "", callback);
rest_request_list<invite>(this, API_PATH "/channels", std::to_string(c.id), "invites", m_get, "", callback);
}

void cluster::channel_typing(const class channel &c, command_completion_event_t callback) {
Expand Down