Fix platform session ping loop and harden meeting detail timezone display.
Deploy Ladill Meet / deploy (push) Successful in 38s

Defer inconclusive auth ping 401s instead of clearing SSO sessions; add client keepalive and safe timezone fallback on room pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-01 21:35:21 +00:00
co-authored by Cursor
parent f98d66c9f9
commit a18b571ae7
7 changed files with 51 additions and 9 deletions
+13
View File
@@ -151,6 +151,19 @@ class Room extends Model
return data_get($this->settings, $key, data_get(config('meet.default_settings'), $key, $default));
}
public function safeTimezone(): string
{
$timezone = (string) ($this->timezone ?: 'UTC');
try {
new \DateTimeZone($timezone);
return $timezone;
} catch (\Throwable) {
return 'UTC';
}
}
public function isLive(): bool
{
return $this->status === 'live';