Skip to content
This repository was archived by the owner on Mar 5, 2023. It is now read-only.

Commit 438a1c5

Browse files
committed
fixing type declaration
1 parent 581bfc8 commit 438a1c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

endpoints.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@ func CreateEndpoints(base string) {
246246
EndpointGuildChannels = func(gID int64) string { return EndpointGuilds + StrID(gID) + "/channels" }
247247
EndpointGuildMembers = func(gID int64) string { return EndpointGuilds + StrID(gID) + "/members" }
248248
EndpointGuildMember = func(gID int64, uID int64) string { return EndpointGuilds + StrID(gID) + "/members/" + StrID(uID) }
249-
EndpointGuildMemberAvatar = func(gID, uID int64, aID string) string {
249+
EndpointGuildMemberAvatar = func(gID int64, uID int64, aID string) string {
250250
return EndpointCDNGuilds + StrID(gID) + "/users/" + StrID(uID) + "/avatars/" + aID + ".png"
251251
}
252-
EndpointGuildMemberAvatarAnimated = func(gID, uID int64, aID string) string {
252+
EndpointGuildMemberAvatarAnimated = func(gID int64, uID int64, aID string) string {
253253
return EndpointCDNGuilds + StrID(gID) + "/users/" + StrID(uID) + "/avatars/" + aID + ".gif"
254254
}
255255
EndpointGuildMemberMe = func(gID int64) string { return EndpointGuilds + StrID(gID) + "/members/@me" }

0 commit comments

Comments
 (0)