Skip to content

Commit

Permalink
Merge pull request #5 from Ostorlab/fix/fail_not
Browse files Browse the repository at this point in the history
Continue on JSON error.
  • Loading branch information
3asm authored Feb 9, 2024
2 parents 94e1da6 + de68367 commit 3e55d4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pychrome/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from .tab import *
from .exceptions import *

__version__ = "0.2.6"
__version__ = "0.2.7"
2 changes: 1 addition & 1 deletion pychrome/tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def _recv_loop(self):
message = json.loads(message_json)
except json.decoder.JSONDecodeError:
logger.error("Error decoding message: `%s`", message_json, exc_info=True)
return
continue

except websocket.WebSocketTimeoutException:
continue
Expand Down

0 comments on commit 3e55d4a

Please sign in to comment.