small fixes

This commit is contained in:
Alireza Ahmadi
2025-01-19 01:52:44 +01:00
parent a0dc165995
commit 891a61ac16
5 changed files with 51 additions and 49 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ func (o *Outbound) UnmarshalJSON(data []byte) error {
delete(raw, "tag")
// Remaining fields
o.Options, err = json.Marshal(raw)
o.Options, err = json.MarshalIndent(raw, "", " ")
return err
}