mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Use template strings.
This commit is contained in:
parent
4202fd351b
commit
f730ee26aa
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ export const parseViscolors = text => {
|
|||
if (matches) {
|
||||
colors[i] = `rgb(${matches.slice(1, 4).join(",")})`;
|
||||
} else {
|
||||
console.error("Error in VISCOLOR.TXT on line", i);
|
||||
console.error(`Error in VISCOLOR.TXT on line ${i}`);
|
||||
}
|
||||
}
|
||||
return colors;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue