Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d43f9c8 authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

am ca511a81: Fix appwidget bind dialog

* commit 'ca511a81':
  Fix appwidget bind dialog
parents 91840c02 ca511a81
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -57,8 +57,8 @@ public class AllowBindAppWidgetActivity extends AlertActivity implements
                try {
                    mAppWidgetManager.bindAppWidgetId(mAppWidgetId, mComponentName);
                    Intent result = new Intent();
                    result.putExtra("EXTRA_APPWIDGET_ID", mAppWidgetId);
                    setResult(RESULT_OK);
                    result.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mAppWidgetId);
                    setResult(RESULT_OK, result);
                } catch (Exception e) {
                    Log.v("BIND_APPWIDGET", "Error binding widget with id "
                            + mAppWidgetId + " and component " + mComponentName);