Rename method.

This commit is contained in:
Benoit Marty 2025-08-23 16:19:56 +02:00 committed by Benoit Marty
parent 4e5bbaf946
commit 2b86ff4dfb
4 changed files with 7 additions and 7 deletions

View file

@ -33,7 +33,7 @@ class DefaultIntentProvider @Inject constructor(
): Intent {
return Intent(context, MainActivity::class.java).apply {
action = Intent.ACTION_VIEW
data = deepLinkCreator.room(sessionId, roomId, threadId).toUri()
data = deepLinkCreator.create(sessionId, roomId, threadId).toUri()
}
}
}