diff --git a/src/renderer/components/watch-video-info/watch-video-info.js b/src/renderer/components/watch-video-info/watch-video-info.js index 4d72257a..31f226b6 100644 --- a/src/renderer/components/watch-video-info/watch-video-info.js +++ b/src/renderer/components/watch-video-info/watch-video-info.js @@ -140,16 +140,10 @@ export default Vue.extend({ }, totalLikeCount: function () { - if (this.hideVideoLikesAndDislikes) { - return null - } return this.likeCount + this.dislikeCount }, likePercentageRatio: function () { - if (this.hideVideoLikesAndDislikes) { - return null - } return parseInt(this.likeCount / this.totalLikeCount * 100) }, diff --git a/src/renderer/components/watch-video-info/watch-video-info.vue b/src/renderer/components/watch-video-info/watch-video-info.vue index 4086286f..4f28452a 100644 --- a/src/renderer/components/watch-video-info/watch-video-info.vue +++ b/src/renderer/components/watch-video-info/watch-video-info.vue @@ -44,7 +44,10 @@