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

update nfo writer

This commit is contained in:
Luke Pulverenti 2015-09-25 08:53:38 -04:00
parent c2e474e8e9
commit 9ab9e8b9c8
2 changed files with 12 additions and 12 deletions

View file

@ -48,7 +48,7 @@
function onBackgroundFetch() {
Logger.log('BackgroundFetch initiated');
startSync(false);
startSync(true);
}
function onBackgroundFetchFailed() {
@ -59,15 +59,15 @@
function restartInterval() {
//setInterval(function () {
setInterval(function () {
// startSync(false);
//startSync(true);
//}, syncInterval);
}, syncInterval);
//if (lastStart > 0 && (now - lastStart) >= syncInterval) {
// startSync(true);
//}
if (lastStart > 0 && (now - lastStart) >= syncInterval) {
//startSync(true);
}
}
Dashboard.ready(restartInterval);