mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix errors in chromecasthelpers
This commit is contained in:
parent
6acff39055
commit
ce2fdc9df2
1 changed files with 2 additions and 1 deletions
|
@ -131,8 +131,9 @@ define(['events'], function (events) {
|
||||||
var links = [];
|
var links = [];
|
||||||
var match;
|
var match;
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-cond-assign
|
||||||
while (match = linkRegExp.exec(text)) {
|
while (match = linkRegExp.exec(text)) {
|
||||||
console.debug(matches);
|
console.debug(match);
|
||||||
var txt = match[0];
|
var txt = match[0];
|
||||||
var pos = match.index;
|
var pos = match.index;
|
||||||
var len = txt.length;
|
var len = txt.length;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue