aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAjay <[email protected]>2023-11-08 18:19:28 -0500
committerAjay <[email protected]>2023-11-08 18:19:28 -0500
commit72c62d0fa41ac9c44a2135739012e9e5ced75b5f (patch)
tree4f022dac0175f9d3cd662948190e1dbfd7955a33 /src
parent133ea360d7b757b3b0be45b36d54b6d14d90b332 (diff)
downloadSponsorBlock-72c62d0fa41ac9c44a2135739012e9e5ced75b5f.tar.gz
SponsorBlock-72c62d0fa41ac9c44a2135739012e9e5ced75b5f.zip
Deduplicate different quotes when comparing chapter names
Diffstat (limited to 'src')
-rw-r--r--src/utils/exporter.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/exporter.ts b/src/utils/exporter.ts
index a5871b65..50a333af 100644
--- a/src/utils/exporter.ts
+++ b/src/utils/exporter.ts
@@ -106,5 +106,5 @@ export function exportTimesAsHashParam(segments: SponsorTime[]): string {
export function normalizeChapterName(description: string): string {
- return description.toLowerCase().replace(/\.|:|-/g, "").replace(/\s+/g, " ");
+ return description.toLowerCase().replace(/[.:-'’`‛‘"‟”]/g, "").replace(/\s+/g, " ");
} \ No newline at end of file