diff --git a/Application/LinkBubble/src/main/java/com/linkbubble/MainController.java b/Application/LinkBubble/src/main/java/com/linkbubble/MainController.java index 04862c50c..aeb0ad5f1 100644 --- a/Application/LinkBubble/src/main/java/com/linkbubble/MainController.java +++ b/Application/LinkBubble/src/main/java/com/linkbubble/MainController.java @@ -914,6 +914,11 @@ public boolean closeTab(TabView tabView, boolean animateOff, boolean canShowUndo public boolean closeTab(TabView tabView, Constant.BubbleAction action, boolean animateOff, boolean canShowUndoPrompt) { + if (tabView == null) { + CrashTracking.log("closeTab attempt on null tabView"); + return false; + } + // If the tab is already closing, do nothing. Otherwise we could end up in a weird state, // where we attempt to show multiple prompts and crashing upon tab restore. if (tabView.mIsClosing == true) { diff --git a/Application/LinkBubble/src/main/res/xml/changelog.xml b/Application/LinkBubble/src/main/res/xml/changelog.xml index 83a075543..295f74d93 100755 --- a/Application/LinkBubble/src/main/res/xml/changelog.xml +++ b/Application/LinkBubble/src/main/res/xml/changelog.xml @@ -6,6 +6,7 @@ NEW: Ability to upload files via HTML file picker inputs. This requires us to ask for the permissions to read from external storage. BUG FIX: Fixed text color for light colored theme backgrounds. BUG FIX: Fixed previously broken functionality with various websites and image galleries. + BUG FIX: Fixed top crashers.