[FIX] BREADCRUMBS: Fixed breadcrumbs not clearing issue

This commit is contained in:
Horilla
2025-12-12 14:23:08 +05:30
parent f653631a8b
commit db0cbbdbca

View File

@@ -21,6 +21,7 @@ def is_valid_uuid(uuid_string):
def _split_path(self, path=None):
path = path or self.path
path = path.strip("/")
parts = path.split("/") if path else []
if parts and parts[0] in ("static", "media"):