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

Commit fcf82495 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Ignore null action in AppWidgetServiceImpl." into main am: cf4fd8c4 am: 24311667

parents 4a04f694 24311667
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -237,6 +237,10 @@ class AppWidgetServiceImpl extends IAppWidgetService.Stub implements WidgetBacku
        @Override
        public void onReceive(Context context, Intent intent) {
            final String action = intent.getAction();
            if (action == null) {
                return;
            }

            final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);

            if (DEBUG) {