Skip to content

Commit

Permalink
Merge pull request #16 from monich/vcard
Browse files Browse the repository at this point in the history
[mms_task_encode] Added file extension mapping for vcards
  • Loading branch information
Slava Monich committed Apr 4, 2014
2 parents ae37842 + fd1cbc2 commit 18f2e97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mms-lib/src/mms_task_encode.c
Expand Up @@ -411,8 +411,10 @@ mms_task_encode_generate_path(
{ "image/png", ".png" },
{ "image/bmp", ".bmp" },
{ "image/gif", ".gif" },
{ "text/x-vcard", ".vcf" },
{ "text/vcard", ".vcf" },
{ "text/plain", ".txt" },
{ "text/html", ".html" },
{ "text/html", ".html" }
};
const char* type = parsed[0];
const char* known_ext = NULL;
Expand Down

0 comments on commit 18f2e97

Please sign in to comment.