mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-07 17:02:29 +01:00
fix (panic): possible panic when used with full text search engine
This commit is contained in:
parent
9c6d337c7f
commit
ae70b692e6
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue