Skip to content

Commit

Permalink
Fix default websocket status being untranslated
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jul 16, 2024
1 parent 016955c commit 90c3def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self, pool: WebsocketPool, index: int):
self.topics: dict[str, WebsocketTopic] = {}
self._submitted: set[WebsocketTopic] = set()
# notify GUI
self.set_status("Disconnected")
self.set_status(_("gui", "websocket", "disconnected"))

@property
def connected(self) -> bool:
Expand Down

0 comments on commit 90c3def

Please sign in to comment.