diff options
author | CyberPhoenix90 <[email protected]> | 2021-12-30 15:22:02 +0100 |
---|---|---|
committer | CyberPhoenix90 <[email protected]> | 2021-12-30 15:22:02 +0100 |
commit | 8763d173bda7b68dbadbcf57bf29e3053f00ec13 (patch) | |
tree | 9f80e990ba0198842c44f36ae7210eae8b2f296f /src/utils.ts | |
parent | 07e3117e22215ec0c2e7fd1541aed8f32f6a5871 (diff) | |
download | SponsorBlock-8763d173bda7b68dbadbcf57bf29e3053f00ec13.tar.gz SponsorBlock-8763d173bda7b68dbadbcf57bf29e3053f00ec13.zip |
fix missing semi colon
Diffstat (limited to 'src/utils.ts')
-rw-r--r-- | src/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.ts b/src/utils.ts index 3aee2b6f..661ca0bb 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -28,7 +28,7 @@ export default class Utils { return await new Promise((resolve, reject) => { setTimeout(() => { clearInterval(interval); - reject("TIMEOUT") + reject("TIMEOUT"); }, timeout); const intervalCheck = () => { |