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:
parent
77ce9f1088
commit
02bcc830c1
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue