dave-p / TVHadmin-JS

A javascript front-end for Tvheadend, inspired by VDRadmin
GNU General Public License v3.0
29 stars 7 forks source link

undefined in include.js, sort_title function #1

Closed pejobo closed 3 years ago

pejobo commented 3 years ago

https://github.com/dave-p/TVHadmin-JS/blob/a104116719fe48dfc6d2c6e5782dda2d02be04f2/include.js#L145

This line throws an exception for me, 'x' is undefined in channels view. Strangely because I've got an "auto rec" entry without name.

My quick fix was adding these two lines:

if (!x) x = '';
if (!y) y = '';