Skip to content

Commit

Permalink
fix: wrong SystemMessageType enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
supersnager committed Mar 9, 2023
1 parent b64b025 commit bae1b2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/enums/SystemMessageType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export enum SystemMessageType {
Content = 0, // Client should display content from the content property
UserJoined = 1, // Content property contains the name of the user who joined the conversation
UserLeft = 2, // Content property contains the name of the user who left the conversation
AdvisorJoined = 1, // Content property contains the name of the advisor who joined the conversation
AdvisorLeft = 2, // Content property contains the name of the advisor who left the conversation
CustomerJoined = 3, // Content property contains the name of the customer who joined the conversation
CustomerLeft = 4, // Content property contains the name of the customer who left the conversation
AdvisorJoined = 3, // Content property contains the name of the advisor who joined the conversation
AdvisorLeft = 4, // Content property contains the name of the advisor who left the conversation
CustomerJoined = 5, // Content property contains the name of the customer who joined the conversation
CustomerLeft = 6, // Content property contains the name of the customer who left the conversation
}

0 comments on commit bae1b2f

Please sign in to comment.