Fixed bug where links wouldn't open correctly in the browser
This commit is contained in:
parent
aec90b4ae2
commit
928b12619a
@ -135,7 +135,11 @@ public class TabsManager {
|
||||
if (mPreferenceManager.getRestoreLostTabsEnabled()) {
|
||||
restoreLostTabs(url, activity, subscriber);
|
||||
} else {
|
||||
newTab(activity, null, false);
|
||||
if (!TextUtils.isEmpty(url)) {
|
||||
newTab(activity, url, false);
|
||||
} else {
|
||||
newTab(activity, null, false);
|
||||
}
|
||||
finishInitialization();
|
||||
subscriber.onComplete();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user