Update inbound.go (#1925)

Clinet -> Client
This commit is contained in:
Ikko Eltociear Ashimine 2024-02-27 20:33:37 +09:00 committed by GitHub
parent 2f1aad3e63
commit 0785da7223
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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{})