Skip to content

Commit 6e426dc

Browse files
authored
Merge pull request #5825 from AlexVelezLl/fix-unpublishable-change
Fix add to community library change making channel publishable
2 parents 24a93eb + f9a2866 commit 6e426dc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

contentcuration/contentcuration/viewsets/community_library_submission.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,8 @@ def _add_to_community_library(self, submission):
320320
categories=submission.categories,
321321
country_codes=country_codes,
322322
),
323-
created_by_id=submission.resolved_by_id,
323+
# This change is not publishable and should not trigger publish-related logic
324+
unpublishable=True,
324325
)
325326
apply_channel_changes_task.fetch_or_enqueue(
326327
submission.resolved_by,

0 commit comments

Comments
 (0)