about summary refs log tree commit diff
path: root/users/Profpatsch/lyric/extension/src/extension.ts
diff options
context:
space:
mode:
Diffstat (limited to 'users/Profpatsch/lyric/extension/src/extension.ts')
-rw-r--r--users/Profpatsch/lyric/extension/src/extension.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/lyric/extension/src/extension.ts b/users/Profpatsch/lyric/extension/src/extension.ts
index 1272b3c1b80d..a895bd57bf2a 100644
--- a/users/Profpatsch/lyric/extension/src/extension.ts
+++ b/users/Profpatsch/lyric/extension/src/extension.ts
@@ -416,7 +416,7 @@ class Ext {
     if (!match) {
       return;
     }
-    const [, timestamp, text] = match!;
+    const [, timestamp, text] = match;
     const milliseconds = parseTimestamp(timestamp);
     const seconds = milliseconds / 1000;
     return { milliseconds, seconds, text };