UserAuth: Fix Coverage

This commit is contained in:
Gert-Jan Timmer 2018-06-14 11:04:17 +02:00
parent 4c7a9b4b81
commit c7b624f43d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ func (c *SQLiteConn) authUserDelete(username string) int {
// AuthEnabled checks if the database is protected by user authentication
func (c *SQLiteConn) AuthEnabled() (exists bool) {
_ := c.authEnabled()
c.authEnabled()
return false
}