fix(launcher): skip url files in sync
This commit is contained in:
@@ -110,7 +110,8 @@ let is_online: boolean = $state(typeof navigator !== 'undefined' ? navigator.onL
|
||||
*/
|
||||
const is_url = $derived(
|
||||
(event_file_obj?.filename ?? '').startsWith('https://') ||
|
||||
(event_file_obj?.filename ?? '').startsWith('http://')
|
||||
(event_file_obj?.filename ?? '').startsWith('http://') ||
|
||||
(event_file_obj?.extension ?? '').toLowerCase() === 'url'
|
||||
);
|
||||
|
||||
let screen_saver_exts = ['jpg', 'png', 'PNG', 'webp'];
|
||||
|
||||
Reference in New Issue
Block a user