Merge pull request #245 from krillefear/patch-1
Add deep link for FluffyChat Android and iOS
This commit is contained in:
commit
4d779d5f52
@ -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 New Issue
Block a user