You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-08-13 22:12:50 +02:00
All: Fixes #240: Tags should be handled in a case-insensitive way
This commit is contained in:
@@ -116,7 +116,7 @@ class Tag extends BaseItem {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (let i = 0; i < previousTags.length; i++) {
|
for (let i = 0; i < previousTags.length; i++) {
|
||||||
if (addedTitles.indexOf(previousTags[i].title) < 0) {
|
if (addedTitles.indexOf(previousTags[i].title.toLowerCase()) < 0) {
|
||||||
await this.removeNote(previousTags[i].id, noteId);
|
await this.removeNote(previousTags[i].id, noteId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user