mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 18:35:40 +03:00
adding missing . for file extension
This commit is contained in:
parent
5ee379e10d
commit
00059e7b70
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ abstract class AbstractVoiceRecorder(
|
|||
|
||||
override fun startRecord() {
|
||||
init()
|
||||
outputFile = File(outputDirectory, "${UUID.randomUUID()}$filenameExt")
|
||||
outputFile = File(outputDirectory, "${UUID.randomUUID()}.$filenameExt")
|
||||
|
||||
val mr = mediaRecorder ?: return
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
|
|
Loading…
Reference in a new issue