Skip to content

Commit

Permalink
Refresh all fields, we need it all to make sure the category is in th…
Browse files Browse the repository at this point in the history
…e correct space (#357)
  • Loading branch information
viggo-devries authored Sep 26, 2024
1 parent 045eafa commit ff78def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oscarapi/utils/categories.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ def _upsert_categories(data, parent_category=None):
# Move the category as the first child under the parent category since we have no sibling
category.move(parent_category, pos="first-child")

# Update the new path from the database after moving the category to it's new home
category.refresh_from_db(fields=["path"])
# Update the category to make it aware of it's new home after moving
category.refresh_from_db()

# The category is now the sibling, new categories will be moved to the right of this category
sibling = category
Expand Down

0 comments on commit ff78def

Please sign in to comment.