Skip to content

Commit

Permalink
Merge pull request #2185 from ben-sb/issue/mark-unpacking-as-unsafe
Browse files Browse the repository at this point in the history
Mark unpacking feature as unsafe
  • Loading branch information
bitwiseman authored Aug 15, 2023
2 parents b279b0c + a88e65a commit a58566b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h2>Options</h2>
<label for="comma-first">Use comma-first list style?</label>
<br>
<input class="checkbox" type="checkbox" id="detect-packers">
<label for="detect-packers">Detect packers and obfuscators?</label>
<label for="detect-packers">Detect packers and obfuscators? (unsafe)</label>
<br>
<input class="checkbox" type="checkbox" id="brace-preserve-inline">
<label for="brace-preserve-inline">Preserve inline braces/code blocks?</label>
Expand Down
2 changes: 1 addition & 1 deletion web/common-function.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function run_tests() {
function read_settings_from_cookie() {
$('#tabsize').val(any(Cookies.get('tabsize'), '4'));
$('#brace-style').val(any(Cookies.get('brace-style'), 'collapse'));
$('#detect-packers').prop('checked', Cookies.get('detect-packers') !== 'off');
$('#detect-packers').prop('checked', Cookies.get('detect-packers') === 'on');
$('#max-preserve-newlines').val(any(Cookies.get('max-preserve-newlines'), '5'));
$('#keep-array-indentation').prop('checked', Cookies.get('keep-array-indentation') === 'on');
$('#break-chained-methods').prop('checked', Cookies.get('break-chained-methods') === 'on');
Expand Down

0 comments on commit a58566b

Please sign in to comment.