mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-26 08:18:08 +00:00
fix(ui/modules/Common/Form/DroppableTextArea): little fix
This commit is contained in:
parent
1aa110ba8b
commit
796205cd58
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue