mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +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() {
|
override fun startRecord() {
|
||||||
init()
|
init()
|
||||||
outputFile = File(outputDirectory, "${UUID.randomUUID()}$filenameExt")
|
outputFile = File(outputDirectory, "${UUID.randomUUID()}.$filenameExt")
|
||||||
|
|
||||||
val mr = mediaRecorder ?: return
|
val mr = mediaRecorder ?: return
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
|
|
Loading…
Reference in a new issue