Skip to content

Commit 9e1d094

Browse files
committed
fix: 修复 adb 不填写 extra 无法连接的问题
1 parent bb2116e commit 9e1d094

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/components/panels/main/ConnectionPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const ConnectionPanel = memo(
9696
);
9797
const [manualConfig, setManualConfig] = usePersistedState<string>(
9898
"adb_config",
99-
"",
99+
"{}",
100100
);
101101
const [manualName, setManualName] = usePersistedState<string>(
102102
"adb_name",

src/data/updateLogs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ export const updateLogs: UpdateLogItem[] = [
114114
"还原连接线路径时会自动进行 external 节点的就近连接重计算",
115115
"优化资源健康检查相关术语",
116116
],
117-
fixes: ["修复 on_error 无法连接至自身的问题"],
117+
fixes: [
118+
"修复 on_error 无法连接至自身的问题",
119+
"修复 adb 不填写 extra 无法连接的问题",
120+
],
118121
},
119122
},
120123
{

0 commit comments

Comments
 (0)