1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix task filter for the scan task button

This commit is contained in:
Claus Vium 2020-09-03 12:20:02 +02:00
parent 77ce9f1088
commit 02bcc830c1

View file

@ -14,7 +14,7 @@ export default function (options) {
function updateTasks(tasks) {
const task = tasks.filter(function (t) {
return t.Key == options.taskKey;
return t.ScheduledTask.Key == options.taskKey;
})[0];
if (options.panel) {