aktueller stand

This commit is contained in:
2026-02-01 17:47:54 +01:00
parent 1b5d5e2ed3
commit 3f7bf88312
3 changed files with 69 additions and 1 deletions

View File

@@ -774,6 +774,16 @@ async function restoreSessionsFromDisk() {
console.log(`[RESTORE] Session fuer Profil ${profile.id} (${profile.name}) reaktiviert.`);
} catch (error) {
console.error(`[RESTORE] Login fuer Profil ${profileId} fehlgeschlagen:`, error.message);
try {
await notificationService.sendAdminSessionErrorNotification({
profileId,
profileEmail: credentials?.email,
error: error?.message,
label: 'restore'
});
} catch (notifyError) {
console.error('[NOTIFY] Admin-Session-Fehler beim Restore konnte nicht gemeldet werden:', notifyError.message);
}
}
}
}