Prefix with /chat/ to make it a valid Uri
This commit is contained in:
parent
994ad17fc9
commit
d52e84ee23
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ export class Fluffychat {
|
|||
|
||||
getDeepLink(platform, link) {
|
||||
switch (platform) {
|
||||
case Platform.Android: return `im.fluffychat://${link.identifier}`;
|
||||
case Platform.iOS: return `im.fluffychat://${link.identifier}`;
|
||||
case Platform.Android: return `im.fluffychat://chat/${link.identifier}`;
|
||||
case Platform.iOS: return `im.fluffychat://chat/${link.identifier}`;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue