diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-08-13 16:32:28 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-08-13 16:32:28 +0200 |
commit | 0f67b3cc674377559e66c5a6729fd499049a992f (patch) | |
tree | db385afa84c09891e9a83c18b6e5436cf6e983ed /src/DesktopIntegration.vala | |
parent | f8ca421bdacee8851965a4b802ada1d2366bdbc1 (diff) | |
parent | 6cee6189adf46287667c35707325dd0820ea9f33 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/DesktopIntegration.vala')
-rw-r--r-- | src/DesktopIntegration.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DesktopIntegration.vala b/src/DesktopIntegration.vala index 89ff556..80e8b2e 100644 --- a/src/DesktopIntegration.vala +++ b/src/DesktopIntegration.vala @@ -215,15 +215,15 @@ private class BackgroundSlideshowXMLBuilder { private void write_transition(File from, File to) throws Error { outs.put_string(" <transition>\n"); outs.put_string(" <duration>%2.2f</duration>\n".printf(transition)); - outs.put_string(" <from>%s</from>\n".printf(from.get_path())); - outs.put_string(" <to>%s</to>\n".printf(to.get_path())); + outs.put_string(" <from>%s</from>\n".printf(Markup.escape_text(from.get_path()))); + outs.put_string(" <to>%s</to>\n".printf(Markup.escape_text(to.get_path()))); outs.put_string(" </transition>\n"); } private void write_static(File file) throws Error { outs.put_string(" <static>\n"); outs.put_string(" <duration>%2.2f</duration>\n".printf(duration)); - outs.put_string(" <file>%s</file>\n".printf(file.get_path())); + outs.put_string(" <file>%s</file>\n".printf(Markup.escape_text(file.get_path()))); outs.put_string(" </static>\n"); } |