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 bool DanmakuAuthenticateWithStreamerUid => false;
public bool DanmakuAuthenticateWithStreamerUid => true;
public bool NetworkTransportUseSystemProxy => false;

View File

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

View File

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