diff --git a/linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml b/linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml index ee99a785b..8cec6a1f0 100644 --- a/linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml +++ b/linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml @@ -28,7 +28,7 @@ Item { function _emitFiles (files) { // Filtering files, other urls are forbidden. files = files.reduce(function (files, file) { - if (file.startsWith('file:') { + if (file.startsWith('file:')) { files.push(Utils.getPathFromUri(file)) }