Fix boolean conversion
This commit is contained in:
parent
8b3f65073c
commit
d59d7e6c8d
|
@ -1999,7 +1999,7 @@ $(document).ready(() => {
|
|||
});
|
||||
|
||||
$("#custom_stopping_strings_macro").change(function () {
|
||||
power_user.custom_stopping_strings_macro = $(this).prop("checked");
|
||||
power_user.custom_stopping_strings_macro = !!$(this).prop("checked");
|
||||
saveSettingsDebounced();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue