Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugins/reach/lib/kReachManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ private function addingEntryVendorTaskByObjectIds($taskObjectType, $allowedCata

private function shouldSkipAutoRule($object, $entryId, $featureType)
{
if ($object instanceof CaptionAsset && $featureType == VendorServiceFeature::CAPTIONS)
Comment thread
AlaaSaf12 marked this conversation as resolved.
Outdated
{
KalturaLog::log("Skip automatic caption rule triggered by a CaptionAsset upload for entry [$entryId]");
return true;
}

if ($featureType == VendorServiceFeature::CAPTIONS)
{
if ($object instanceof entry && $object->getBlockAutoTranscript())
Expand Down
Loading