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

Commit 09368e0a authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am 450e63af: Merge "Unlinked providers STILL shouldn\'t cause crashes"

* commit '450e63af':
  Unlinked providers STILL shouldn't cause crashes
parents a2f04a8e 450e63af
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1751,7 +1751,8 @@ class AppWidgetServiceImpl {
                for (int i = 0; i < N; i++) {
                    AppWidgetId id = mAppWidgetIds.get(i);
                    if (backupTarget.equals(id.host.packageName)
                            || backupTarget.equals(id.provider.info.provider.getPackageName())) {
                            || (id.provider != null && backupTarget.equals(
                                    id.provider.info.provider.getPackageName()))) {
                        serializeAppWidgetId(out, id);
                    }
                }