1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
This commit is contained in:
DanieL 2022-12-22 13:22:02 -03:00
parent 005992cbc3
commit 2a82d79cc8

View file

@ -2097,7 +2097,7 @@ function checkMoment() {
}
function addGetParam(_url, _key, _value) {
if (typeof _url !== 'string' || _value == 'undefined') {
if (typeof _url !== 'string' || typeof _value !== 'undefined' || _value == 'undefined' || _value == '') {
return false;
}
var param = _key + '=' + escape(_value);