Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 222808b5 authored by Jesse Vincent's avatar Jesse Vincent
Browse files

Bump up preview length from 160 to 250 to make better use of larger

displays
parent 18cf9230
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2267,13 +2267,13 @@ public class LocalStore extends Store implements Serializable
            text = text.replaceAll("^On .*wrote.?$","");
            text = text.replaceAll("(\\r|\\n)+"," ");
            text = text.replaceAll("\\s+"," ");
            if (text.length() <= 160)
            if (text.length() <= 250)
            {
                return text;
            }
            else
            {
                text = text.substring(0,160);
                text = text.substring(0,250);
                return text;
            }