mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-14 03:32:22 -05:00
Carddav: encode photo href
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1207 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
d1278edad4
commit
7419375ab7
@ -1227,7 +1227,7 @@ public class DavExchangeSession extends ExchangeSession {
|
||||
public ExchangeSession.ContactPhoto getContactPhoto(ExchangeSession.Contact contact) throws IOException {
|
||||
ContactPhoto contactPhoto = null;
|
||||
if ("true".equals(contact.get("haspicture"))) {
|
||||
final GetMethod method = new GetMethod(contact.getHref() + "/ContactPicture.jpg");
|
||||
final GetMethod method = new GetMethod(URIUtil.encodePath(contact.getHref()) + "/ContactPicture.jpg");
|
||||
method.setRequestHeader("Translate", "f");
|
||||
method.setRequestHeader("Accept-Encoding", "gzip");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user