1
0
Fork 0
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:
Bill Thornton 2020-02-26 02:03:21 -05:00
parent 6acff39055
commit ce2fdc9df2

View file

@ -131,8 +131,9 @@ define(['events'], function (events) {
var links = [];
var match;
// eslint-disable-next-line no-cond-assign
while (match = linkRegExp.exec(text)) {
console.debug(matches);
console.debug(match);
var txt = match[0];
var pos = match.index;
var len = txt.length;