1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fixes #1166 - "Played" checkbox doesn't work for whole seasons

This commit is contained in:
Luke Pulverenti 2015-10-02 16:27:05 -04:00
parent f1f12e4765
commit 8dcb1d85cb

View file

@ -363,7 +363,10 @@
url += name;
if (params) {
url += "?" + HttpClient.param(params);
params = HttpClient.param(params);
if (params) {
url += "?" + params;
}
}
return url;