diff options
Diffstat (limited to 'src/com/android/browser/Controller.java')
| -rw-r--r-- | src/com/android/browser/Controller.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/browser/Controller.java b/src/com/android/browser/Controller.java index 9710669f..9402a77d 100644 --- a/src/com/android/browser/Controller.java +++ b/src/com/android/browser/Controller.java @@ -1624,12 +1624,20 @@ public class Controller @Override protected Long doInBackground(Tab... params) { Uri result = cr.insert(Snapshots.CONTENT_URI, values); + if (result == null) { + return null; + } long id = ContentUris.parseId(result); return id; } @Override protected void onPostExecute(Long id) { + if (id == null) { + Toast.makeText(mActivity, R.string.snapshot_failed, + Toast.LENGTH_SHORT).show(); + return; + } Bundle b = new Bundle(); b.putLong(BrowserSnapshotPage.EXTRA_ANIMATE_ID, id); mUi.showComboView(ComboViews.Snapshots, b); |
