修改在线列表

This commit is contained in:
启星
2025-12-10 10:01:27 +08:00
parent 3b0e2386c5
commit 1a0dac1d91
26 changed files with 413 additions and 76 deletions

View File

@@ -723,7 +723,14 @@
}
}
break;
case QXRoomMessageTypeInviteSignUpSeat:{
NSString *user_id = [NSString stringWithFormat:@"%@",msg.Text[@"user_id"]];
NSString *text = [NSString stringWithFormat:@"%@",msg.Text[@"text"]];
if (self.delegate && [self.delegate respondsToSelector:@selector(signSeatInviteWithUserId:content:)]) {
[self.delegate signSeatInviteWithUserId:user_id content:text];
}
}
break;
default:
break;
}