From 0785da7223f22d2237473dbbc38b9f2afd92c6fb Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 27 Feb 2024 20:33:37 +0900 Subject: [PATCH] Update inbound.go (#1925) Clinet -> Client --- web/service/inbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/inbound.go b/web/service/inbound.go index f637c0b2..a103e256 100644 --- a/web/service/inbound.go +++ b/web/service/inbound.go @@ -1814,7 +1814,7 @@ func (s *InboundService) MigrationRequirements() { json.Unmarshal([]byte(inbounds[inbound_index].Settings), &settings) clients, ok := settings["clients"].([]interface{}) if ok { - // Fix Clinet configuration problems + // Fix Client configuration problems var newClients []interface{} for client_index := range clients { c := clients[client_index].(map[string]interface{})