(db: DatabaseAdapter, gapThreshold: number | null)
| 550 | * Update gap threshold in meta table. |
| 551 | */ |
| 552 | export function updateSessionGapThreshold(db: DatabaseAdapter, gapThreshold: number | null): void { |
| 553 | db.prepare('UPDATE meta SET session_gap_threshold = ?').run(gapThreshold) |
| 554 | } |
| 555 | |
| 556 | /** |
| 557 | * Update session owner_id in meta table. |
no test coverage detected