updated linter and bumped app version

This commit is contained in:
Gani Georgiev
2026-08-22 23:11:51 +03:00
parent c532fd19b6
commit eae29c83a8
16 changed files with 3346 additions and 3326 deletions
+2 -2
View File
@@ -139,7 +139,7 @@ func unmarshalInStructValue(
fieldValue := dereference(dstStructValue.Field(i))
ft := fieldType.Type
if ft.Kind() == reflect.Ptr {
if ft.Kind() == reflect.Pointer {
ft = ft.Elem()
}
@@ -237,7 +237,7 @@ func unmarshalInStructValue(
// dereference returns the underlying value v points to.
func dereference(v reflect.Value) reflect.Value {
for v.Kind() == reflect.Ptr {
for v.Kind() == reflect.Pointer {
if v.IsNil() {
// initialize with a new value and continue searching
v.Set(reflect.New(v.Type().Elem()))