Skip to content

Commit

Permalink
add log message and corrected string templating
Browse files Browse the repository at this point in the history
  • Loading branch information
akashrpo committed Jul 19, 2021
1 parent c541af7 commit 83d22de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integrations/RedditPixel/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class RedditPixel {
}
})(window, document);

rdt("init", "${this.advertiserId}");
rdt("init", `${this.advertiserId}`);
}

isLoaded() {
Expand Down Expand Up @@ -70,6 +70,7 @@ class RedditPixel {
window.rdt("track", "Search");
break;
default:
logger.debug("Track call not supported");
break;
}
}
Expand Down

0 comments on commit 83d22de

Please sign in to comment.