Make type check strict

This commit is contained in:
世界
2024-01-03 12:21:46 +08:00
parent 09421b6378
commit 744a5d703b
4 changed files with 9 additions and 3 deletions
+2
View File
@@ -111,6 +111,8 @@ func (h *Inbound) UnmarshalJSON(bytes []byte) error {
v = &h.TUICOptions
case C.TypeHysteria2:
v = &h.Hysteria2Options
case "":
return E.New("missing inbound type")
default:
return E.New("unknown inbound type: ", h.Type)
}