Skip to content

Commit

Permalink
fix range error in regex string
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 7, 2024
1 parent f3858c4 commit 1cabbad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html5/connect.html
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ <h4 class="panel-title">Advanced options</h4>
}

function safe_session(name) {
return Utilities.removeChars('a-zA-Z0-9\:-%"', name);
return Utilities.removeChars('a-zA-Z0-9\\:\\-%"', name);
}
const display = getparam("display") || "";
function init_shadow_display() {
Expand Down

0 comments on commit 1cabbad

Please sign in to comment.