We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819ea82 commit ad52941Copy full SHA for ad52941
ios/RCTJMessageModule/JMessageHelper.m
@@ -643,13 +643,21 @@ - (NSMutableDictionary *)messageToDictionary {
643
break;
644
}
645
case kJMSGEventNotificationUpdateGroupInfo: {
646
- dict[@"eventType"] = @"updateGroupInfo";
+ dict[@"eventType"] = @"group_info_updated";
647
648
649
case kJMSGEventNotificationUserLoginStatusUnexpected: {
650
dict[@"eventType"] = @"userLoginStatusUnexpected";
651
652
653
+ case kJMSGEventNotificationGroupTypeChange: {
654
+ dict[@"eventType"] = @"group_type_changed";
655
+ break;
656
+ }
657
+ case kJMSGEventNotificationDissolveGroup: {
658
+ dict[@"eventType"] = @"group_dissolved";
659
660
661
default:
662
663
0 commit comments