Rename method.

This commit is contained in:
Benoit Marty 2025-08-23 16:19:56 +02:00 committed by Benoit Marty
parent 2b42271615
commit 4daf57ab2d
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()
}
}
}