1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 18:39:54 +00:00

Prevent infinite loop for single-word texts (#7327)

This commit is contained in:
yaisog 2023-03-04 14:37:16 +01:00 committed by GitHub
parent 0eb6569674
commit b548b29b2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ function diffPartsToChars(text1,text2,mode) {
if(mode === "words") {
regexpResult = searchRegexp.exec(text);
lineEnd = searchRegexp.lastIndex;
if(lineEnd === null) {
if(regexpResult === null) {
lineEnd = text.length;
}
lineEnd = --lineEnd;