mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
fix(core): default to old danmaku handshake behaviour
This commit is contained in:
parent
b826ebf611
commit
b2ef1d982c
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user