diff --git a/src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte b/src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte index c1c8cb5e..1b532fe6 100644 --- a/src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte +++ b/src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte @@ -22,10 +22,10 @@ // Loop Timings (Visible in UI) let loop_info = $state({ - event: 90000, + event: 120000, device: 60000, - location: 30000, - session: 10000 + location: 90000, + session: 45000 }); // Timer Handles @@ -212,7 +212,8 @@ dev?.id_random; if (!device_id) { - if (log_lvl) + // Only log warning if we are actually supposed to be in native mode + if (log_lvl && $ae_loc.is_native) console.warn( 'Sync: Heartbeat skipped, no device_id found in $ae_loc.native_device.' ); @@ -242,7 +243,7 @@ // Safely handle IP list (bridge may return ip_addresses or networkInterfaces) const ips = info.ip_addresses || []; update_payload.info_ip_list = Array.isArray(ips) ? ips.join(', ') : 'Unknown'; - + update_payload.meta_json = { platform: info.platform, release: info.release,