File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ function makePathEntry(turn) {
567567 'main article' ,
568568 ] ;
569569 const candidates = dedupeElements ( fallbackSelectors . flatMap ( sel => [ ...document . querySelectorAll ( sel ) ] ) )
570- . filter ( el => isReadableTurnCandidate ( el , { minText : 2 } ) ) ;
570+ . filter ( el => isReadableTurnCandidate ( el , { minText : 0 } ) ) ;
571571 turns = candidates
572572 . filter ( el => ! candidates . some ( other => other !== el && other . contains ( el ) ) )
573573 . sort ( ( a , b ) => rectTop ( a ) - rectTop ( b ) ) ;
@@ -647,7 +647,7 @@ function makePathEntry(turn) {
647647 '[class*="HumanTurn"]' ,
648648 ] ;
649649 return dedupeElements ( selectTopLevelCandidates ( selectors )
650- . filter ( el => isReadableTurnCandidate ( el , { minText : 2 } ) ) )
650+ . filter ( el => isReadableTurnCandidate ( el , { minText : 0 } ) ) )
651651 . sort ( ( a , b ) => rectTop ( a ) - rectTop ( b ) ) ;
652652 }
653653
You can’t perform that action at this time.
0 commit comments