From 39a2b905cf67d1aa7a33ec3b75deef9955c470cb Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Mon, 8 Jul 2019 04:50:42 +0100 Subject: [PATCH] fix: remove a redundant parameter (#2579) --- lib/routes/bbc/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/bbc/utils.js b/lib/routes/bbc/utils.js index 77119cc08e..d151a7078e 100644 --- a/lib/routes/bbc/utils.js +++ b/lib/routes/bbc/utils.js @@ -110,7 +110,7 @@ const ProcessFeed = ($, link) => { // handle lazy-loading images ProcessImage($, e, '.js-delayed-image-load'); - ProcessVideo($, e, 'figure.media-with-caption > div.player-with-placeholder', link); + ProcessVideo($, e, 'figure.media-with-caption > div.player-with-placeholder'); $(e).remove(); });