diff --git a/plugins/reach/lib/kReachManager.php b/plugins/reach/lib/kReachManager.php index aecf4c9b67..5b033dab08 100644 --- a/plugins/reach/lib/kReachManager.php +++ b/plugins/reach/lib/kReachManager.php @@ -116,6 +116,11 @@ private function shouldSkipAutoRule($object, $entryId, $featureType) { if ($featureType == VendorServiceFeature::CAPTIONS) { + if($object instanceof CaptionAsset) + { + KalturaLog::log("Skip automatic caption rule triggered by a CaptionAsset upload for entry [$entryId]"); + return true; + } if ($object instanceof entry && $object->getBlockAutoTranscript()) { KalturaLog::log("Skip the entry automatic rule if it's a caption or transcript and 'Block Auto Transcript' is enabled");