Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Tracklist_Merger/script.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ function calcSimilarity(a, b) {
if (p.value.toLowerCase() === next.value.toLowerCase()) {
res += escapeHTML(p.value);
} else {
res += charDiff(p.value, next.value, cls);
res += highlightWords(p.value, cls);
}
i += 2;
continue;
Expand All @@ -725,7 +725,7 @@ function calcSimilarity(a, b) {
if (next.value.toLowerCase() === p.value.toLowerCase()) {
res += escapeHTML(next.value);
} else {
res += charDiff(next.value, p.value, cls);
res += highlightWords(next.value, cls);
}
i += 2;
continue;
Expand Down