Skip to content

Commit 0ea6d01

Browse files
authored
Merge pull request #88 from Eyevinn/feat/remove-index-from-ad-id
feat: remove the index from ad id for easier identification
2 parents 93b2d76 + b9f835c commit 0ea6d01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/vast-maker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ function AttachPodAds(vast, podAds, params) {
196196
.attachCreatives()
197197
.attachCreative({
198198
id: `CRETIVE-ID_00${i + 1}`,
199-
[adId]: `${podAds[i].id}_${i + 1}`,
199+
[adId]: `${podAds[i].id}`,
200200
sequence: `${i + 1}`,
201201
});
202202
if (vast.attrs.version === "4.0") {

0 commit comments

Comments
 (0)