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

Commit 866b1945 authored by Danny Baumann's avatar Danny Baumann Committed by Steve Kondik
Browse files

Properly handle null URIs.



Change-Id: Ib81044686f40284bacf6ee645c671679f62be843
Signed-off-by: default avatarChet Kener <Cl3Kener@gmail.com>
parent 58cc1bd4
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);
                }
            }