Skip to content

Commit

Permalink
can't use argument for default value
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 27, 2024
1 parent 11070d0 commit 8a6687a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ <h2>Xpra Bug Report</h2>
cpoll = !ssl;
}
const clipboard_poll = getboolparam("clipboard_poll", cpoll);
const clipboard_preferred_format = getparam("clipboard_preferred_format", "text/plain");
const clipboard_preferred_format = getparam("clipboard_preferred_format") || "text/plain";
const printing = getboolparam("printing", true);
const file_transfer = getboolparam("file_transfer", true);
const steal = getboolparam("steal", true);
Expand Down

0 comments on commit 8a6687a

Please sign in to comment.