Skip to content

Commit

Permalink
fix: [AXM-349] fix wrong filename
Browse files Browse the repository at this point in the history
  • Loading branch information
NiedielnitsevIvan committed Jun 6, 2024
1 parent 7db246b commit 44cf855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openedx/features/offline_mode/assets_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def is_modified(xblock):
Args:
xblock (XBlock): The XBlock instance to check.
"""
file_path = os.path.join(block_storage_path(xblock), 'content_html.zip')
file_path = os.path.join(block_storage_path(xblock), OFFLINE_CONTENT_ARCHIVE_NAME)

try:
last_modified = default_storage.get_created_time(file_path)
Expand Down

0 comments on commit 44cf855

Please sign in to comment.