Add default values for Second's missing properties
This commit is contained in:
parent
93e96185ef
commit
fe94dce5e3
|
@ -351,10 +351,10 @@ export default Vue.extend({
|
||||||
this.videoViewCount = result.viewCount
|
this.videoViewCount = result.viewCount
|
||||||
this.videoLikeCount = result.likeCount
|
this.videoLikeCount = result.likeCount
|
||||||
this.videoDislikeCount = result.dislikeCount
|
this.videoDislikeCount = result.dislikeCount
|
||||||
this.channelSubscriptionCountText = result.subCountText
|
this.channelSubscriptionCountText = result.subCountText || 'FT-0'
|
||||||
this.channelId = result.authorId
|
this.channelId = result.authorId
|
||||||
this.channelName = result.author
|
this.channelName = result.author
|
||||||
this.channelThumbnail = result.authorThumbnails[1].url
|
this.channelThumbnail = result.authorThumbnails[1] ? result.authorThumbnails[1].url : ''
|
||||||
this.videoPublished = result.published * 1000
|
this.videoPublished = result.published * 1000
|
||||||
this.videoDescriptionHtml = result.descriptionHtml
|
this.videoDescriptionHtml = result.descriptionHtml
|
||||||
this.recommendedVideos = result.recommendedVideos
|
this.recommendedVideos = result.recommendedVideos
|
||||||
|
|
Loading…
Reference in New Issue