Skip to content

Commit

Permalink
fix "edit regex" button of find Related mail #488
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRaven2000 committed Dec 6, 2024
1 parent 5dacfe2 commit d751b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ async function initButtons() {
}
}

encodedRegex = searchValue ? encodeURIComponent(searchValue) : "enter search pattern";
const encodedRegex = searchValue ? encodeURIComponent(searchValue) : "enter search pattern";
if (searchFlags) {
flagsParam = "&flags=" + encodeURIComponent(searchFlags);
}
Expand Down

0 comments on commit d751b84

Please sign in to comment.