[web] Fix variable name
This commit is contained in:
parent
5db55f66c1
commit
4a1b4575fe
|
@ -57,7 +57,7 @@ export default {
|
|||
// Parse the lyrics
|
||||
const regex =
|
||||
/\[(?<minutes>\d+):(?<seconds>\d+)(?:\.(?<hundredths>\d+))?\] ?(?<text>.*)/u
|
||||
raw.split('\n').forEach((item) => {
|
||||
raw.split('\n').forEach((line) => {
|
||||
const { text, minutes, seconds, hundredths } = regex.exec(line).groups
|
||||
if (text) {
|
||||
const verse = {
|
||||
|
|
Loading…
Reference in New Issue