Merge pull request #245 from krillefear/patch-1
Add deep link for FluffyChat Android and iOS
This commit is contained in:
commit
4d779d5f52
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://chat/${link.identifier}`;
|
||||
case Platform.iOS: return `im.fluffychat://chat/${link.identifier}`;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
canInterceptMatrixToLinks(platform) {
|
||||
return platform === Platform.Android;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue