Backend: Remove log from FolderCoverByUID #1011

This commit is contained in:
Michael Mayer 2021-02-07 20:30:50 +01:00
parent 89f9229c6a
commit 63ce5ea933

View file

@ -40,7 +40,6 @@ func FolderCoverByUID(uid string) (file entity.File, err error) {
Order("photos.photo_quality DESC").
Limit(1).
First(&file).Error; err != nil {
log.Error(err)
return file, err
}