diff --git a/plextraktsync/util/Rating.py b/plextraktsync/util/Rating.py index f3fe101a80..4ac59a04c6 100644 --- a/plextraktsync/util/Rating.py +++ b/plextraktsync/util/Rating.py @@ -15,6 +15,9 @@ def __eq__(self, other): if isinstance(other, (int, float)): return self.rating == int(other) + if other is None: + return False + return self.rating == other.rating def __str__(self):