Unread message count 조회 시 URL 인코딩된 문자열이 디코딩되지 않는 문제

[Problem/Question]
읽지 않은 메시지 수 조회 API 호출 시 쿼리파라미터의 ","를 url 인코딩하면, 잘못된 응답이 옵니다.
예를 들어
GET https://api-{mytoken}.sendbird.com/v3/group_channels/{mychannel}/messages/unread_count?user_ids=A1,A2,A3
위와 같이 호출할때 3개 데이터가 응답된다면
GET https://api-{mytoken}.sendbird.com/v3/group_channels/{mychannel}/messages/unread_count?user_ids=A1%2CA2%2CA3
이렇게 호출하면 "%2C"가 디코딩되지 않고 이 문자열 그대로 받아들여 아무런 데이터를 반환하지 않습니다.


// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.

[Frequency]
// How frequently is this issue occurring?

[Current impact]
// How is this currently impacting your implementation?