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

Commit cf86116e authored by Danny Baumann's avatar Danny Baumann
Browse files

Properly handle null URIs.

Change-Id: Ib81044686f40284bacf6ee645c671679f62be843
JIRA:CYAN-2491
parent a8f92a9f
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 {