mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
go fmt
This commit is contained in:
parent
9d41f5a39f
commit
4843ccb46c
42 changed files with 150 additions and 160 deletions
|
@ -1,8 +1,8 @@
|
|||
package persistence
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/deluan/gosonic/domain"
|
||||
"errors"
|
||||
)
|
||||
|
||||
type propertyRepository struct {
|
||||
|
@ -29,7 +29,7 @@ func (r *propertyRepository) Get(id string) (string, error) {
|
|||
return rec.(*domain.Property).Value, err
|
||||
}
|
||||
|
||||
func (r*propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
||||
func (r *propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
||||
v, err := r.Get(id)
|
||||
|
||||
if v == "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue