Fix crashes

This commit is contained in:
Andras Schmelczer 2025-03-22 18:10:39 +00:00
parent 1b57e277a2
commit eb9fadf714
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 26 additions and 25 deletions

View file

@ -33,7 +33,7 @@ export interface HistoryStats {
}
export class SyncHistory {
private static readonly MAX_ENTRIES = 5000;
private static readonly MAX_ENTRIES = 500;
private readonly entries: HistoryEntry[] = [];