>.< should be quoteable (bugfix).

Millesimus created

Change summary

src/main/java/eu/siacs/conversations/ui/util/QuoteHelper.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

src/main/java/eu/siacs/conversations/ui/util/QuoteHelper.java 🔗

@@ -77,10 +77,10 @@ public class QuoteHelper {
     }
 
     public static boolean isNestedTooDeeply (CharSequence line){
-        if (isPositionQuoteCharacter(line, 0)) {
+        if (isPositionQuoteStart(line, 0)) {
             int nestingDepth = 1;
             for (int i = 1; i < line.length(); i++) {
-                if (isPositionQuoteCharacter(line, i)) {
+                if (isPositionQuoteStart(line, i)) {
                     nestingDepth++;
                 }
                 if (nestingDepth > (Config.QUOTING_MAX_DEPTH - 1)) {