File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -358,13 +358,11 @@ export async function getNextComment(
358358 } ) ;
359359
360360 let next : GetCommentsParams | null = null ;
361- // TEMP: disable topical comment routing while we improve performance
362- // if (shouldUseTopical) {
363- // next = await getNextTopicalComment(zid!, pid!, withoutTids);
364- // } else {
365- // next = await getNextPrioritizedComment(zid!, pid!, withoutTids);
366- // }
367- next = await getNextPrioritizedComment ( zid ! , pid ! , withoutTids ) ;
361+ if ( shouldUseTopical ) {
362+ next = await getNextTopicalComment ( zid ! , pid ! , withoutTids ) ;
363+ } else {
364+ next = await getNextPrioritizedComment ( zid ! , pid ! , withoutTids ) ;
365+ }
368366
369367 // If topical path yielded nothing, try prioritized as a fallback
370368 if ( ! next && shouldUseTopical ) {
You can’t perform that action at this time.
0 commit comments