Remove diacritics in FTS search

This commit is contained in:
Jonas Kvinge
2020-08-05 23:31:52 +02:00
parent 1991c1b677
commit 0d820eda12
4 changed files with 13 additions and 13 deletions

View File

@@ -13,7 +13,7 @@ CREATE VIRTUAL TABLE %allsongstables_fts USING fts5(
ftsgrouping,
ftsgenre,
ftscomment,
tokenize = "unicode61 remove_diacritics 0"
tokenize = "unicode61 remove_diacritics 1"
);
@@ -28,7 +28,7 @@ CREATE VIRTUAL TABLE playlist_items_fts_ USING fts5(
ftsgrouping,
ftsgenre,
ftscomment,
tokenize = "unicode61 remove_diacritics 0"
tokenize = "unicode61 remove_diacritics 1"
);