Skip to content

Commit 55b35a6

Browse files
authored
Merge pull request #1020 from Pingdred/develop
Fix: `send_notification`
2 parents 99c55e6 + edf19c9 commit 55b35a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 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)