fix(core): also remove buvid

This commit is contained in:
genteure 2023-07-16 21:22:00 +08:00
parent 557b88c950
commit 547cde5940

View File

@ -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);