Commit 18bc812c authored by Thomas's avatar Thomas
Browse files

Fix issue #276 - Search OG when there is only one URL

parent 74921e6d
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -302,13 +302,16 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
                     */
                    Matcher matcher;
                    matcher = Patterns.WEB_URL.matcher(sharedText);
                    int count = 0;
                    while (matcher.find()) {
                        int matchStart = matcher.start(1);
                        int matchEnd = matcher.end();
                        if (matchStart < matchEnd && sharedText.length() >= matchEnd)
                        if (matchStart < matchEnd && sharedText.length() >= matchEnd) {
                            url[0] = sharedText.substring(matchStart, matchEnd);
                            count++;
                        }
                    if (url[0] != null && url[0].length() == sharedText.length()) {
                    }
                    if (url[0] != null && count == 1) {
                        new Thread(() -> {
                            if (url[0].startsWith("www."))
                                url[0] = "http://" + url[0];