mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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"
|
"reflect"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/dhowden/tag"
|
"github.com/dhowden/tag"
|
||||||
"github.com/disintegration/imaging"
|
"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) {
|
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 artID model.ArtworkID
|
||||||
var err error
|
var err error
|
||||||
if id != "" {
|
if id != "" {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue