Add missing parameter for the SNAPSHOT version of analytics library (#759)

* Unblock CI by adding missing parameter for the SNAPSHOT version of analytics library

* Use commit hash as version for now
This commit is contained in:
Jorge Martin Espinosa 2023-07-04 09:59:12 +02:00 committed by GitHub
parent ca6d931215
commit 59be2abf21
2 changed files with 3 additions and 2 deletions

View file

@ -135,7 +135,8 @@ class MessageComposerPresenter @Inject constructor(
Composer(
inThread = false,
isEditing = composerMode.value is MessageComposerMode.Edit,
isReply = composerMode.value is MessageComposerMode.Reply
isReply = composerMode.value is MessageComposerMode.Reply,
isLocation = false,
)
)
}