File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export const getTitleFromText = (text: string): string => {
116116 let endIdx = firstIdx === - 1 ? arr . length : firstIdx
117117 let titleArr = arr . slice ( 0 , endIdx )
118118 let title = titleArr . join ( '' )
119- const limit = 20
119+ const limit = 50
120120 if ( titleArr . length > limit ) {
121121 title = limitStr ( title , limit )
122122 }
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ exports.getTitleFromText = function (text) {
138138 let endIdx = firstIdx === - 1 ? arr . length : firstIdx
139139 let titleArr = arr . slice ( 0 , endIdx )
140140 let title = titleArr . join ( '' )
141- const limit = 20
141+ const limit = 50
142142 if ( titleArr . length > limit ) {
143143 title = this . limitStr ( title , limit )
144144 }
You can’t perform that action at this time.
0 commit comments