Add deep link for FluffyChat Android and iOS
This commit is contained in:
parent
7d22a57874
commit
994ad17fc9
1 changed files with 7 additions and 1 deletions
|
@ -73,7 +73,13 @@ export class Fluffychat {
|
|||
}
|
||||
}
|
||||
|
||||
getDeepLink(platform, link) { }
|
||||
getDeepLink(platform, link) {
|
||||
switch (platform) {
|
||||
case Platform.Android: return `im.fluffychat://${link.identifier}`;
|
||||
case Platform.iOS: return `im.fluffychat://${link.identifier}`;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
canInterceptMatrixToLinks(platform) {
|
||||
return platform === Platform.Android;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue