Skip to content

Commit

Permalink
fix: removed unwanted curly bracket from conv API URL [WPB-11925]
Browse files Browse the repository at this point in the history
  • Loading branch information
e-maad committed Jan 21, 2025
1 parent 9621a38 commit c7846b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export class ConversationAPI {
url:
this.backendFeatures.version >= apiBreakpoint.version7
? `/${ConversationAPI.URL.BOT}/${ConversationAPI.URL.CONVERSATIONS}/${conversationId}`
: `/${ConversationAPI.URL.CONVERSATIONS}/${conversationId}/${ConversationAPI.URL.BOTS}}`,
: `/${ConversationAPI.URL.CONVERSATIONS}/${conversationId}/${ConversationAPI.URL.BOTS}`,
};

const response = await this.client.sendJSON<ConversationMemberJoinEvent>(config);
Expand Down

0 comments on commit c7846b9

Please sign in to comment.