diff --git a/services/youtube/youtube-base.js b/services/youtube/youtube-base.js
index d3810e000684f9a4766664923b1da33b015dd0ce..3b99847ac40f0b4eb8196c23ac197c9f8413caa8 100644
--- a/services/youtube/youtube-base.js
+++ b/services/youtube/youtube-base.js
@@ -70,7 +70,7 @@ class YouTubeBase extends BaseJsonService {
     )
   }
 
-  async handle({ channelId, videoId }, queryParams) {
+  async handle({ channelId, videoId }) {
     const id = channelId || videoId
     const json = await this.fetch({ id })
     if (json.pageInfo.totalResults === 0) {
@@ -79,7 +79,7 @@ class YouTubeBase extends BaseJsonService {
       })
     }
     const statistics = json.items[0].statistics
-    return this.constructor.render({ statistics, id }, queryParams)
+    return this.constructor.render({ statistics, id })
   }
 }
 
diff --git a/services/youtube/youtube-likes.service.js b/services/youtube/youtube-likes.service.js
index 820093e2d5b8ff9420a6ddbf130a4fdcfbafba28..ad9160f42eb2929f0bbea065c8f1c19cc91e2d47 100644
--- a/services/youtube/youtube-likes.service.js
+++ b/services/youtube/youtube-likes.service.js
@@ -23,12 +23,11 @@ export default class YouTubeLikes extends YouTubeVideoBase {
     ]
   }
 
-  static render({ statistics, id }, queryParams) {
-    const renderedBadge = super.renderSingleStat({
+  static render({ statistics, id }) {
+    return super.renderSingleStat({
       statistics,
       statisticName: 'like',
       id,
     })
-    return renderedBadge
   }
 }