mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add timeout for artwork extraction
This commit is contained in:
parent
52a4721c91
commit
8cf78efb9c
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,7 @@ import (
|
|||
"reflect"
|
||||
"runtime"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/dhowden/tag"
|
||||
"github.com/disintegration/imaging"
|
||||
|
@ -46,6 +47,9 @@ type artwork struct {
|
|||
}
|
||||
|
||||
func (a *artwork) Get(ctx context.Context, id string, size int) (io.ReadCloser, error) {
|
||||
ctx, cancel := context.WithTimeout(ctx, 10*time.Second)
|
||||
defer cancel()
|
||||
|
||||
var artID model.ArtworkID
|
||||
var err error
|
||||
if id != "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue