fix: 修正深度過濾攔截器辨識符號
This commit is contained in:
parent
91f7f5be34
commit
de705431f7
|
|
@ -23,8 +23,8 @@
|
|||
<input type="password" id="cmtsPass" placeholder="密碼" value="nsgadmin" style="width: 100px;">
|
||||
|
||||
<div style="margin-left: 15px; display: flex; align-items: center; gap: 10px;">
|
||||
<button onclick="connectWebSocket()" id="btnConnect" class="btn-modern btn-connect">🟢 連線至 CMTS</button>
|
||||
<button onclick="disconnectWebSocket()" id="btnDisconnect" class="btn-modern btn-disconnect" style="display: none;">⚪ 斷開連線</button>
|
||||
<button onclick="connectWebSocket()" id="btnConnect" class="btn-modern btn-connect">連線至 CMTS</button>
|
||||
<button onclick="disconnectWebSocket()" id="btnDisconnect" class="btn-modern btn-disconnect" style="display: none;">斷開連線</button>
|
||||
<span id="wsStatus" style="color: #7f8c8d; font-size: 14px; font-weight: bold;">狀態:未連線</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@ async def get_full_config(host: str, username: str, password: str = "", skip_fil
|
|||
hidden_keys = settings.get("hidden_keys", [])
|
||||
|
||||
for path in hidden_keys:
|
||||
keys = path.split('.')
|
||||
keys = path.split('::')
|
||||
current = perfect_tree
|
||||
# 走到倒數第二層
|
||||
for k in keys[:-1]:
|
||||
|
|
|
|||
Loading…
Reference in New Issue