Use the new intent link for private chat

Fixes #11080

Signed-off-by: Gheorghe Pinzaru <feross95@gmail.com>
This commit is contained in:
Gheorghe Pinzaru 2020-08-17 15:58:52 +03:00
parent 1e7061acc2
commit b737051e3c
No known key found for this signature in database
GPG Key ID: C9A094959935A952
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public class NewMessageSignalHandler {
//is probably to pass the universal link as param instead of the chatId.
public Intent getOpenAppIntent(String chatId) {
Intent intent = getOpenAppIntent();
intent.setData(Uri.parse("status-im://chat/private/" + chatId));
intent.setData(Uri.parse("status-im://p/" + chatId));
return intent;
}