Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
bcd22090
Commit
bcd22090
authored
Jun 11, 2019
by
Jean-Baptiste Mardelle
Browse files
Don't export metadata as url encoded strings.
Fixes
#241
BUG: 408461
parent
78eccfa3
Pipeline
#4222
passed with stage
in 21 minutes and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/renderwidget.cpp
View file @
bcd22090
...
...
@@ -1452,7 +1452,7 @@ void RenderWidget::generateRenderFiles(QDomDocument doc, const QString &playlist
QMap
<
QString
,
QString
>
metadata
=
project
->
metadata
();
QMap
<
QString
,
QString
>::
const_iterator
i
=
metadata
.
constBegin
();
while
(
i
!=
metadata
.
constEnd
())
{
consumer
.
setAttribute
(
i
.
key
(),
QString
(
QUrl
::
toPercentEncoding
(
i
.
value
())
))
;
consumer
.
setAttribute
(
i
.
key
(),
i
.
value
());
++
i
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment