refactor(desktop, core): Exception-Handling optimiert und Divider-Komponente angepasst

Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
This commit is contained in:
2026-05-07 15:44:04 +02:00
parent 95a130c72e
commit a2d94bbc7e
3 changed files with 9 additions and 9 deletions
@@ -91,7 +91,7 @@ class KtorWebSocketServerService(
snapshot.forEach { session ->
try {
session.send(Frame.Text(json))
} catch (e: Exception) {
} catch (_: Exception) {
// Fehler beim Senden ignorieren; Verbindung wird beim nächsten Empfang entfernt
}
}