Commit 1358a83e authored by 0xd9a's avatar 0xd9a
Browse files

Fix #1247: Empty highlighted hashtags

parent 1b0c0b13
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ public class SpannableHelper {
        String[] tags = new String[]{};
        while (matcherBottomTags.find()) {
            String stringTags = Objects.requireNonNull(matcherBottomTags.group()).trim();
            tags = stringTags.split("\\s");
            tags = stringTags.split("\\s\\n?");
        }
        return tags;
    }