mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update syncjob editor
This commit is contained in:
parent
b121da130b
commit
55b5cebda5
1 changed files with 4 additions and 4 deletions
|
@ -351,10 +351,10 @@
|
|||
});
|
||||
}
|
||||
|
||||
function loadJobInfo(page, job, jobItems) {
|
||||
function loadJobInfo(page, job, jobItems, apiClient) {
|
||||
|
||||
//renderJob(page, job, _jobOptions);
|
||||
renderJobItems(page, jobItems);
|
||||
renderJobItems(page, jobItems, apiClient);
|
||||
loading.hide();
|
||||
}
|
||||
|
||||
|
@ -399,8 +399,8 @@
|
|||
return false;
|
||||
});
|
||||
|
||||
function onSyncJobMessage(e, msg) {
|
||||
loadJobInfo(view, msg.Data.Job, msg.Data.JobItems);
|
||||
function onSyncJobMessage(e, apiClient, msg) {
|
||||
loadJobInfo(view, msg.Job, msg.JobItems, apiClient);
|
||||
}
|
||||
|
||||
function startListening(page) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue