diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-10 16:47:55 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-10 16:47:55 +0200 |
commit | 15303b0d3a84572090e81dc7c737b575184135b6 (patch) | |
tree | f978ddafe95cb51f0a78439090a71e732416062d /util/vcard.lua | |
parent | 489e76797644abd032f5febe2723328941de7bc9 (diff) | |
download | prosody-15303b0d3a84572090e81dc7c737b575184135b6.tar.gz prosody-15303b0d3a84572090e81dc7c737b575184135b6.zip |
util.vcard: Turn PHOTO fields into data-uris
Diffstat (limited to 'util/vcard.lua')
-rw-r--r-- | util/vcard.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/vcard.lua b/util/vcard.lua index 152b0b2d..8aafa24d 100644 --- a/util/vcard.lua +++ b/util/vcard.lua @@ -349,7 +349,11 @@ local function item_to_vcard4(item) if prop_def == "text" then t:tag("text"):text(item[1]):up(); elseif prop_def == "uri" then - t:tag("uri"):text(item[1]):up(); + if item.ENCODING and item.ENCODING[1] == 'b' then + t:tag("uri"):text("data:;base64,"):text(item[1]):up(); + else + t:tag("uri"):text(item[1]):up(); + end elseif type(prop_def) == "table" then if prop_def.values then for i, v in ipairs(prop_def.values) do |