mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix error comparisons
This commit is contained in:
parent
7b0a8f47de
commit
db67c1277e
27 changed files with 93 additions and 73 deletions
|
@ -2,6 +2,7 @@ package persistence
|
|||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
|
||||
. "github.com/Masterminds/squirrel"
|
||||
"github.com/beego/beego/v2/client/orm"
|
||||
|
@ -48,7 +49,7 @@ func (r userPropsRepository) Get(userId, key string) (string, error) {
|
|||
|
||||
func (r userPropsRepository) DefaultGet(userId, key string, defaultValue string) (string, error) {
|
||||
value, err := r.Get(userId, key)
|
||||
if err == model.ErrNotFound {
|
||||
if errors.Is(err, model.ErrNotFound) {
|
||||
return defaultValue, nil
|
||||
}
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue