From 547cde59400f8ef4104f3cb639e8fc5d42b313d8 Mon Sep 17 00:00:00 2001 From: genteure Date: Sun, 16 Jul 2023 21:22:00 +0800 Subject: [PATCH] fix(core): also remove buvid --- BililiveRecorder.Core/Room.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BililiveRecorder.Core/Room.cs b/BililiveRecorder.Core/Room.cs index ee44c26..0cc7d80 100644 --- a/BililiveRecorder.Core/Room.cs +++ b/BililiveRecorder.Core/Room.cs @@ -546,8 +546,9 @@ retry: { var obj = JObject.Parse(json); obj["uid"] = this.Uid; - // delete token + // delete key and buvid obj.Remove("key"); + obj.Remove("buvid"); json = obj.ToString(Formatting.None); } return this.userScriptRunner.CallOnDanmakuHandshake(this.logger, this, json);