From 67329e6622c38b5932d3e84542c620da16a21073 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Fri, 15 Dec 2023 17:40:57 +0100 Subject: Prevent loading related object when updating tags We can simply save by the ID here, we do not need any other data from the related object. --- pydis_site/apps/content/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pydis_site/apps') diff --git a/pydis_site/apps/content/utils.py b/pydis_site/apps/content/utils.py index cfd73d67..9c949a93 100644 --- a/pydis_site/apps/content/utils.py +++ b/pydis_site/apps/content/utils.py @@ -206,9 +206,9 @@ def record_tags(tags: list[Tag]) -> None: # pretend it's previous state is the current state old_tag = new_tag - if old_tag.sha == new_tag.sha and old_tag.last_commit is not None: + if old_tag.sha == new_tag.sha and old_tag.last_commit_id is not None: # We still have an up-to-date commit entry - new_tag.last_commit = old_tag.last_commit + new_tag.last_commit_id = old_tag.last_commit_id new_tag.save() -- cgit v1.2.3