mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 02:48:19 -07:00
Merge pull request #1904 from jellyfin/fix_scan_all_libraries
Fix task filter for the scan task button
This commit is contained in:
commit
3dc322d4bc
@ -13,7 +13,7 @@ export default function (options) {
|
|||||||
|
|
||||||
function updateTasks(tasks) {
|
function updateTasks(tasks) {
|
||||||
const task = tasks.filter(function (t) {
|
const task = tasks.filter(function (t) {
|
||||||
return t.Key == options.taskKey;
|
return t.ScheduledTask.Key == options.taskKey;
|
||||||
})[0];
|
})[0];
|
||||||
|
|
||||||
if (options.panel) {
|
if (options.panel) {
|
||||||
|
Loading…
Reference in New Issue
Block a user