mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue