This commit is contained in:
Dennis Eichhorn 2020-03-15 09:29:04 +01:00
parent 7dd269f2c9
commit eedbf3f36d

View File

@ -144,7 +144,7 @@ export class UriFactory
let pars = [];
for (const a in comps) {
if (comps.hasOwnProperty(a)) {
if (comps.hasOwnProperty(a) && comps[a] !== '' && comps[a] !== null) {
pars.push(a + '=' + comps[a]);
}
}