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

Commit 42c04a09 authored by tol4711's avatar tol4711 Committed by Marvin W.
Browse files

use null initial dynamic link

Avoid sending empty initial links to apps, use null like stock GMS. Empty links can confuse apps such as Jitsi Meet when the proper link has already been delivered as an intent.
parent b582f19e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public class DynamicLinksServiceImpl extends IDynamicLinksService.Stub {

    @Override
    public void getInitialLink(IDynamicLinksCallbacks callback, String link) throws RemoteException {
        callback.onStatusDynamicLinkData(Status.SUCCESS, new DynamicLinkData());
        callback.onStatusDynamicLinkData(Status.SUCCESS, null);
    }