fix(core): default to old danmaku handshake behaviour

This commit is contained in:
genteure 2023-07-23 18:05:32 +08:00
parent b826ebf611
commit b2ef1d982c
3 changed files with 5 additions and 5 deletions

View File

@ -546,7 +546,7 @@ namespace BililiveRecorder.Core.Config.V3
public DanmakuTransportMode DanmakuTransport => DanmakuTransportMode.Random; public DanmakuTransportMode DanmakuTransport => DanmakuTransportMode.Random;
public bool DanmakuAuthenticateWithStreamerUid => true; public bool DanmakuAuthenticateWithStreamerUid => false;
public bool NetworkTransportUseSystemProxy => false; public bool NetworkTransportUseSystemProxy => false;

View File

@ -303,8 +303,8 @@
} }
}, },
"DanmakuAuthenticateWithStreamerUid": { "DanmakuAuthenticateWithStreamerUid": {
"description": "使用直播间主播的uid进行弹幕服务器认证\n默认: true", "description": "使用直播间主播的uid进行弹幕服务器认证\n默认: false",
"markdownDescription": "使用直播间主播的uid进行弹幕服务器认证 \n默认: `true `\n\n", "markdownDescription": "使用直播间主播的uid进行弹幕服务器认证 \n默认: `false `\n\n",
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
@ -314,7 +314,7 @@
}, },
"Value": { "Value": {
"type": "boolean", "type": "boolean",
"default": true "default": false
} }
} }
}, },

View File

@ -230,7 +230,7 @@ export const data: Array<ConfigEntry> = [
type: "bool", type: "bool",
configType: "globalOnly", configType: "globalOnly",
advancedConfig: true, advancedConfig: true,
default: true, default: false,
}, },
{ {
id: "NetworkTransportUseSystemProxy", id: "NetworkTransportUseSystemProxy",