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

Commit ca511a81 authored by Michael Jurka's avatar Michael Jurka
Browse files

Fix appwidget bind dialog

Bug: 6926529
Change-Id: I19327a6346b6e7da61a49a983b3373058db21f12
parent d7ae05db
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);