Skip to content

Commit

Permalink
fix (panic): possible panic in search using reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-kerjean committed Feb 25, 2024
1 parent eba127d commit 9c6d337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/plugin/plg_backend_tmp/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (this TmpStorage) Init(params map[string]string, app *App) (IBackend, error
}
os.MkdirAll(p, 0755)
params["path"] = p
return TmpStorage{}, nil
return &TmpStorage{}, nil
}

func (this TmpStorage) LoginForm() Form {
Expand Down

0 comments on commit 9c6d337

Please sign in to comment.