This commit is contained in:
youngq 2024-10-28 11:15:53 +08:00
parent 481009985e
commit 32374a9cd4
1 changed files with 1 additions and 1 deletions

View File

@ -32,10 +32,10 @@ namespace WGShare.API.BackgroudServices
// 离开频道消息订阅
using (RedisHelper.Instance.SubscribeList(RedisKeyConstant.PubSub.MeetingRecord, async (message) =>
{
_logger.LogDebug($"接受消息: {message}");
if (message == null) return;
_logger.LogDebug($"接受消息: {message}");
var body = message.ToString().FromJson<EventBody>();
if (body == null)
{