BaseMessage

- Added decoding support for `CommandType.MEMBERSHIP_JOIN_REP` and `CommandType.MEMBERSHIP_LIST_REP`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-18 12:43:58 +02:00
parent c6640f5010
commit 56dc43253e
1 changed files with 3 additions and 1 deletions

View File

@ -142,8 +142,10 @@ public class BaseMessage
}
else if(
message.commandType == CommandType.MEMBERSHIP_JOIN ||
message.commandType == CommandType.MEMBERSHIP_JOIN_REP ||
message.commandType == CommandType.MEMBERSHIP_LEAVE ||
message.commandType == CommandType.MEMBERSHIP_LIST
message.commandType == CommandType.MEMBERSHIP_LIST ||
message.commandType == CommandType.MEMBERSHIP_LIST_REP
)
{
import davinci.c2s.channels : ChannelMembership;