We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f473df commit 2ce6dd3Copy full SHA for 2ce6dd3
1 file changed
sizebot/lib/userdb.py
@@ -321,8 +321,8 @@ def toJSON(self) -> Any:
321
"macrovision_model": self._macrovision_model,
322
"macrovision_view": self._macrovision_view,
323
"allowchangefromothers": self.allowchangefromothers,
324
- "minimum_height": None if self.minimum_limit is None else str(self.minimum_limit),
325
- "maximum_height": None if self.maximum_limit is None else str(self.maximum_limit)
+ "minimum_limit": None if self.minimum_limit is None else str(self.minimum_limit),
+ "maximum_limit": None if self.maximum_limit is None else str(self.maximum_limit)
326
}
327
328
# Create a new object from a python dictionary imported using json
0 commit comments