Skip to content

Commit

Permalink
Fix extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
lyxal committed Dec 3, 2023
1 parent b274526 commit ab66a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function shareOptions(shareType) {
let flagAppendage = ""
const flagsThatMatter = flags.replace(/[5bBT<]/g, "");
if (flagsThatMatter) {
flagAppendage = " `" + flagsThatMatter + "`,"
flagAppendage = " `" + flagsThatMatter + "`"
}
let output = ""
const utfable = [...code].every(x => (codepage + ' ' + '\n').includes(x))
Expand Down

0 comments on commit ab66a81

Please sign in to comment.