fix: disable stun proxy feature

This commit is contained in:
Simon Ding
2025-05-08 20:35:12 +08:00
parent 5e143edda3
commit 068aa121a4
2 changed files with 6 additions and 7 deletions

View File

@@ -87,12 +87,12 @@ class _DownloaderState extends ConsumerState<DownloaderSettings> {
labelText: "优先级", helperText: "1-50, 1最高优先级50最低优先级"),
validator: FormBuilderValidators.integer(),
autovalidateMode: AutovalidateMode.onUserInteraction),
FormBuilderSwitch(
name: "use_nat_traversal",
enabled: client.implementation == "qbittorrent",
title: const Text("使用内置STUN NAT穿透"),
decoration: InputDecoration(helperText: "内建的NAT穿透功能帮助BT客户端上传(会自动更改下载器的监听地址)"),
),
// FormBuilderSwitch(
// name: "use_nat_traversal",
// enabled: client.implementation == "qbittorrent",
// title: const Text("使用内置STUN NAT穿透"),
// decoration: InputDecoration(helperText: "内建的NAT穿透功能帮助BT客户端上传(会自动更改下载器的监听地址)"),
// ),
FormBuilderSwitch(
name: "remove_completed_downloads",
title: const Text("任务完成后删除")),