Skip to content

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGoogle committed Aug 6, 2019
1 parent 1dc8ff8 commit 89c58bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


def report_problem(error, extra=None, level=logging.ERROR):
logging.log(level, repr(error), extra=extra)
logging.log(level, repr(error))
with sentry_sdk.configure_scope() as scope:
scope.set_extra("extra_context", extra)
sentry_sdk.capture_exception(error)
Expand Down Expand Up @@ -101,7 +101,8 @@ async def get_owned_games(self):
# at least one download exists for supported OS
products.append(prod)
except Exception as e:
report_problem(e, details, level=logging.WARNING)
# commented out until common url lack error is resolved
# report_problem(e, details, level=logging.WARNING)
continue

self._owned_games = {
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"

0 comments on commit 89c58bb

Please sign in to comment.