Skip to content

Commit

Permalink
fix the usage for buold from frags
Browse files Browse the repository at this point in the history
  • Loading branch information
BarryCarlyon committed Apr 19, 2024
1 parent ff54829 commit 7ee6a9c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions eventsub/websockets/web/activity_feed/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,10 @@ function runLine({ payload }) {
}

var cell = r.insertCell();
var dspText = buildFromFragments(fragments);
if (is_prime) {
dspText = `With Twitch Prime: ${dspText}`;
cell.textContent = 'With Twitch Prime: ';
}
cell.textContent = dspText;
buildFromFragments(cell, fragments);

break;

Expand Down

0 comments on commit 7ee6a9c

Please sign in to comment.