From 710c570c8d6579b59812623924d7b00a7660994e Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 8 Apr 2022 22:33:23 +0200 Subject: [PATCH] enhance the rwf command --- myTS3.py | 2 +- src/commands.py | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/myTS3.py b/myTS3.py index 0d1a883..ec28f20 100644 --- a/myTS3.py +++ b/myTS3.py @@ -125,7 +125,7 @@ class TSbot: commands.ticker(self, "") # Hijacked for WoW - commands.rwf(self) + # commands.rwf(self) else: pass diff --git a/src/commands.py b/src/commands.py index 41eaa27..a430159 100644 --- a/src/commands.py +++ b/src/commands.py @@ -3,8 +3,8 @@ TBD """ __author__ = "Lukas Mahler" -__version__ = "0.0.1" -__date__ = "21.03.2022" +__version__ = "0.0.2" +__date__ = "08.04.2022" __email__ = "m@hler.eu" __status__ = "Development" @@ -201,7 +201,12 @@ def rwf(self): this is very specific to my use, you can disable this in the config. """ url = "https://raider.io/api/v1/raiding/progression?raid=sepulcher-of-the-first-ones&difficulty=mythic®ion=world" - data = json.loads(requests.get(url).text) + req = requests.get(url) + + if req.status_code != 200: + return + + data = json.loads(req.text) if not data: return @@ -225,7 +230,7 @@ def rwf(self): def ticker(self, parameter): """ - Refresh the Crypto Ticker channels, + Refresh the crypto Ticker channels, this is very specific to my use, you can disable this in the config. """