Skip to content

Commit

Permalink
Fix scheme in author thumbnail (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
omarroth authored and PrestonN committed Apr 12, 2019
1 parent 9914473 commit b206f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/videos.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function displayChannel(channel) {
let channelData = {};

channelData.channelId = channel.authorId;
channelData.thumbnail = "https:" + channel.authorThumbnails[4].url;
channelData.thumbnail = channel.authorThumbnails[4].url;
channelData.channelName = channel.author;
channelData.description = channel.description;
channelData.subscriberCount = channel.subCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
Expand Down

0 comments on commit b206f4c

Please sign in to comment.