mirror of
https://github.com/sct/overseerr.git
synced 2025-12-28 08:55:28 +01:00
* fix: added a refresh interval if download status is in progress * refactor: switched to a function instead of useEffect * feat: added editable download sync schedule
19 lines
428 B
TypeScript
19 lines
428 B
TypeScript
import type { DownloadingItem } from '@server/lib/downloadtracker';
|
|
|
|
export const refreshIntervalHelper = (
|
|
downloadItem: {
|
|
downloadStatus: DownloadingItem[] | undefined;
|
|
downloadStatus4k: DownloadingItem[] | undefined;
|
|
},
|
|
timer: number
|
|
) => {
|
|
if (
|
|
(downloadItem.downloadStatus ?? []).length > 0 ||
|
|
(downloadItem.downloadStatus4k ?? []).length > 0
|
|
) {
|
|
return timer;
|
|
} else {
|
|
return 0;
|
|
}
|
|
};
|