summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2023-10-17 14:09:04 -0400
committermorpheus65535 <[email protected]>2023-10-17 14:09:04 -0400
commit4521b11061b54ab678db8916d35cd5ac7e0b8003 (patch)
tree16fe4834c953e0a8088564905f75c4b54dac45b7
parent225d79e5697892cec34d8112a09cd4e23dd55b77 (diff)
downloadbazarr-4521b11061b54ab678db8916d35cd5ac7e0b8003.tar.gz
bazarr-4521b11061b54ab678db8916d35cd5ac7e0b8003.zip
no log: fixed remaining getboolean()
-rw-r--r--bazarr/utilities/analytics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/utilities/analytics.py b/bazarr/utilities/analytics.py
index 9d9e06138..02f4ee05f 100644
--- a/bazarr/utilities/analytics.py
+++ b/bazarr/utilities/analytics.py
@@ -65,7 +65,7 @@ class EventTracker:
self.tracker.store.save()
def track_throttling(self, provider, exception_name, exception_info):
- if not settings.analytics.getboolean('enabled'):
+ if not settings.analytics.enabled:
return
throttling_event = self.tracker.create_new_event(name="throttling")