Skip to content

Commit

Permalink
fix (panic): possible panic when used with full text search engine
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-kerjean committed Feb 28, 2024
1 parent 9c6d337 commit ae70b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/plugin/plg_backend_nop/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type BlackHole struct{}

func (this BlackHole) Init(params map[string]string, app *App) (IBackend, error) {
Log.Debug("plg_backend_nop::init params[%s]", params)
return BlackHole{}, nil
return &BlackHole{}, nil
}

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

0 comments on commit ae70b69

Please sign in to comment.