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

Commit d569f623 authored by Danny Baumann's avatar Danny Baumann Committed by Gerrit Code Review
Browse files

Merge "Properly handle null URIs." into cm-11.0

parents 41c1f11c cf86116e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -283,7 +283,7 @@ public final class ContentService extends IContentService.Stub {
                SyncManager syncManager = getSyncManager();
                if (syncManager != null) {
                    syncManager.scheduleLocalSync(null /* all accounts */, callingUserHandle, uid,
                            uri.getAuthority());
                            uri != null ? uri.getAuthority() : null);
                }
            }
        } finally {