From ecc65676f201dc6923b9cb68636c45af62a25492 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Mon, 1 Jun 2020 23:54:24 +0200 Subject: [PATCH] cosmetic fix --- src/ext/lib/video-data/VideoData.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/lib/video-data/VideoData.js b/src/ext/lib/video-data/VideoData.js index ed97b03..0ccce0f 100644 --- a/src/ext/lib/video-data/VideoData.js +++ b/src/ext/lib/video-data/VideoData.js @@ -128,7 +128,7 @@ class VideoData { } async sleep(timeout) { - return new Promise( (resolve, reject) => setTimeout(() => resolve(), timeout)); + return new Promise( (resolve) => setTimeout(() => resolve(), timeout)); }