X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/aa9d250fc29ad29a9b7863a6253e906c772df914..626876f896404c5b8ed10e200d95cbedc5158f5b:/forum/models/action.py diff --git a/forum/models/action.py b/forum/models/action.py index e8d0765..3aa6582 100644 --- a/forum/models/action.py +++ b/forum/models/action.py @@ -300,7 +300,7 @@ class ActionRepute(models.Model): return 0 def _add_to_rep(self, value): - if (self.user.reputation + value < 1) and not settings.ALLOW_NEGATIVE_REPUTATION: + if int(self.user.reputation + value) < 1 and not settings.ALLOW_NEGATIVE_REPUTATION: return 0 else: return models.F('reputation') + value