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

Unverified Commit d38dd7fa authored by Danny Baumann's avatar Danny Baumann Committed by Michael Bestas
Browse files

Properly handle null URIs.



Change-Id: Ib81044686f40284bacf6ee645c671679f62be843
Signed-off-by: default avatarChet Kener <Cl3Kener@gmail.com>
parent 61644fb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -419,7 +419,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);
                }
            }