mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix bugs introduced while improving performance
This commit is contained in:
parent
acb4dea1b4
commit
ec59487e72
1 changed files with 4 additions and 6 deletions
|
@ -449,15 +449,13 @@ class VersionAction(HistoryEvent):
|
|||
serialized_data__icontains='"pk": {}'.format(self.object_id())
|
||||
)
|
||||
& Q(
|
||||
revision__date_created_lt=self.version.revision.date_created
|
||||
revision__date_created__lt=self.version.revision.date_created
|
||||
)
|
||||
)
|
||||
return next(
|
||||
Version.objects.get_for_model(model)
|
||||
return (Version.objects.get_for_model(model)
|
||||
.filter(query)
|
||||
.order_by("-revision__date_created")
|
||||
)
|
||||
except StopIteration:
|
||||
.order_by("-revision__date_created")[0])
|
||||
except Exception as e:
|
||||
return None
|
||||
|
||||
def _compute_diff(self, v1, v2, ignoring=["pwd_ntlm"]):
|
||||
|
|
Loading…
Reference in a new issue