fix: NotificationManager is a Kotlin object, no getInstance needed

This commit is contained in:
James (ClawdBot) 2026-01-28 22:27:19 +00:00
parent 4462bf4cdf
commit b8d1705c9c
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class ClawdNodeApp : Application() {
// Set up command handlers // Set up command handlers
DirectGateway.onNotificationAction = { notificationId, action, replyText -> DirectGateway.onNotificationAction = { notificationId, action, replyText ->
auditLog.log("COMMAND_RECEIVED", "notification.action: $action on $notificationId") auditLog.log("COMMAND_RECEIVED", "notification.action: $action on $notificationId")
AppNotificationManager.getInstance()?.triggerAction(notificationId, action, replyText) AppNotificationManager.triggerAction(notificationId, action, replyText)
} }
DirectGateway.onCallAnswer = { callId -> DirectGateway.onCallAnswer = { callId ->