feat(core): connect danmaku with streamer uid by default

This commit is contained in:
genteure 2023-07-16 21:21:44 +08:00
parent 56cf0ad9ea
commit 557b88c950
3 changed files with 6 additions and 6 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 => false; public bool DanmakuAuthenticateWithStreamerUid => true;
public bool NetworkTransportUseSystemProxy => false; public bool NetworkTransportUseSystemProxy => false;

View File

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

View File

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