Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Eugenio Romano
2026-07-01 23:10:10 +02:00
committed by GitHub
co-authored by Copilot Autofix powered by AI
parent 2fa592eccb
commit 9214bf357f
@@ -81,9 +81,13 @@ export class TimeSyncService {
this.clockOffsetMs = adjustedServerTimeInMs - Date.now();
}),
catchError(() => of(void 0))
catchError(() => {
this.clockOffsetMs = 0;
return of(void 0);
})
);
} catch {
this.clockOffsetMs = 0;
return of(void 0);
}
}