Skip to content

Commit edf19c9

Browse files
committed
Fix: send_notification
1 parent 69ba6b3 commit edf19c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/cat/looking_glass/stray_cat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def send_notification(self, content: str):
151151
Args:
152152
content (str): message to send
153153
"""
154-
self.send_ws_message(text=content, msg_type="notification")
154+
self.send_ws_message(content=content, msg_type="notification")
155155

156156
def send_error(self, error: Union[str, Exception]):
157157
"""Sends an error message to the user using the active WebSocket connection.

0 commit comments

Comments
 (0)