Skip to content

Commit

Permalink
Fixed: Potential NPE
Browse files Browse the repository at this point in the history
git-svn-id: http://android-xbmcremote.googlecode.com/svn/trunk/XBMC Remote@720 677bec2c-7919-11de-bdc7-1f637afd43b1
  • Loading branch information
freezy committed Jan 18, 2011
1 parent 69022ab commit 2154337
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -185,6 +185,9 @@ public void run() {
}

public void onError(Exception exception) {
if (mActivity == null) {
return;
}
final AlertDialog.Builder builder = new AlertDialog.Builder(mActivity);
try {
throw exception;
Expand Down

0 comments on commit 2154337

Please sign in to comment.