mu: use '.msgpart' as extension

We were using '.part', but some desktop software interprets that as a
partial download.
This commit is contained in:
djcb 2015-10-24 11:42:57 +03:00
parent 23f4a64bdc
commit 50d25ce0e0
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ guess_file_name (GMimeObject *mobj, unsigned index)
return g_strdup_printf ("vcal-%u.vcs", index);
/* fallback */
return g_strdup_printf ("%u.part", index);
return g_strdup_printf ("%u.msgpart", index);
}