fix request named queue
This commit is contained in:
parent
4681cb1f1b
commit
9366ad1ccb
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ builder.defineStreamHandler((args) => {
|
||||||
return Promise.resolve({ streams: [] });
|
return Promise.resolve({ streams: [] });
|
||||||
}
|
}
|
||||||
|
|
||||||
return requestQueue.wrap(args, () => resolveStreams(args))
|
return requestQueue.wrap(args.id, () => resolveStreams(args))
|
||||||
.then(streams => applyFilters(streams, args.extra))
|
.then(streams => applyFilters(streams, args.extra))
|
||||||
.then(streams => applySorting(streams, args.extra, args.type))
|
.then(streams => applySorting(streams, args.extra, args.type))
|
||||||
.then(streams => applyStaticInfo(streams))
|
.then(streams => applyStaticInfo(streams))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue