aktueller stand
This commit is contained in:
10
server.js
10
server.js
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user