chore: incomplete commit

This commit is contained in:
izzy 2025-11-14 15:57:29 +00:00
parent 30d2707cec
commit 0bc0f4c3e9
No known key found for this signature in database
GPG key ID: 5059F398521BB0F6

View file

@ -150,6 +150,9 @@ export class MaintenanceWorkerService {
async endMaintenance(): Promise<void> {
const state: MaintenanceModeState = { isMaintenanceMode: false as const };
await this.systemMetadataRepository.set(SystemMetadataKey.MaintenanceMode, state);
this.maintenanceWorkerRepository.restartApp(state);
// => corresponds to notification.service.ts#onAppRestart
this.maintenanceWorkerRepository.clientBroadcast('AppRestartV1', state);
this.maintenanceWorkerRepository.serverSend('AppRestart', state);
}
}