*** Begin Patch
*** Update File: /home/kiwerkzeuge.de/public_html/creator-studio/_lib/bootstrap.php
@@
- if (cs_photo_carousel_brief_is_test($brief)) {
+ $isTest = cs_photo_carousel_brief_is_test($brief);
+ if ($isTest) {
$test += 1;
} else {
$real += 1;
}
+ if (($brief['delivery_mode'] ?? '') === 'sound_ready_mp4') {
+ if ($isTest) {
+ $soundReadyMp4Tests += 1;
+ } else {
+ $soundReadyMp4 += 1;
+ }
+ }
*** End Patch