This repository was archived by the owner on Mar 5, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ var (
107
107
EndpointChannelMessages = func (cID int64 ) string { return EndpointChannels + StrID (cID ) + "/messages" }
108
108
EndpointChannelMessage = func (cID , mID int64 ) string { return EndpointChannels + StrID (cID ) + "/messages/" + StrID (mID ) }
109
109
EndpointChannelMessageAck = func (cID , mID int64 ) string { return EndpointChannels + StrID (cID ) + "/messages/" + StrID (mID ) + "/ack" }
110
- EndpointChannelMessagesBulkDelete = func (cID int64 ) string { return EndpointChannel (cID ) + "/messages/bulk_delete " }
110
+ EndpointChannelMessagesBulkDelete = func (cID int64 ) string { return EndpointChannel (cID ) + "/messages/bulk-delete " }
111
111
EndpointChannelMessagesPins = func (cID int64 ) string { return EndpointChannel (cID ) + "/pins" }
112
112
EndpointChannelMessagePin = func (cID , mID int64 ) string { return EndpointChannel (cID ) + "/pins/" + StrID (mID ) }
113
113
@@ -138,7 +138,7 @@ var (
138
138
139
139
EndpointGuildCreate = EndpointAPI + "guilds"
140
140
141
- EndpointInvite = func (iID string ) string { return EndpointAPI + "invite /" + iID }
141
+ EndpointInvite = func (iID string ) string { return EndpointAPI + "invites /" + iID }
142
142
143
143
EndpointIntegrationsJoin = func (iID string ) string { return EndpointAPI + "integrations/" + iID + "/join" }
144
144
@@ -309,7 +309,7 @@ func CreateEndpoints(base string) {
309
309
310
310
EndpointGuildCreate = EndpointAPI + "guilds"
311
311
312
- EndpointInvite = func (iID string ) string { return EndpointAPI + "invite /" + iID }
312
+ EndpointInvite = func (iID string ) string { return EndpointAPI + "invites /" + iID }
313
313
314
314
EndpointIntegrationsJoin = func (iID string ) string { return EndpointAPI + "integrations/" + iID + "/join" }
315
315
You can’t perform that action at this time.
0 commit comments