Skip to content

Commit b9d3e4f

Browse files
thoronwenRokamun
authored andcommitted
LSP: Start Push: do not include url params that === false
1 parent 297fba9 commit b9d3e4f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lsp/minified.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lsp/mist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6712,7 +6712,7 @@ var UI = {
67126712

67136713
var params = saveas.params;
67146714
for (var i in params) {
6715-
if (params[i] === null) {
6715+
if ((params[i] === null) || (params[i] === false)) {
67166716
//remove any params that are set to null
67176717
delete params[i];
67186718
}

0 commit comments

Comments
 (0)