aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-23 14:04:14 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-23 14:04:14 +0800
commit455fad8262cc3695f61d19d5f54e0a070a990afd (patch)
tree17c5bb7175e0aa54c5c8d6f2785ec2b320059530 /mail/em-format-html.c
parentd32e4fd988dd80c75409793a25bdf4f13706ff4f (diff)
downloadgsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.gz
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.bz2
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.lz
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.xz
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.zst
gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.zip
fix the check to see if we've already loaded the images. #57450.
2004-04-23 Not Zed <NotZed@Ximian.com> * em-format-html.c (em_format_html_load_http): fix the check to see if we've already loaded the images. #57450. svn path=/trunk/; revision=25594
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 53a933f783..a7ccb59dee 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -254,7 +254,7 @@ EMFormatHTML *em_format_html_new(void)
/* force loading of http images */
void em_format_html_load_http(EMFormatHTML *emfh)
{
- if (emfh->load_http)
+ if (emfh->load_http == MAIL_CONFIG_HTTP_ALWAYS)
return;
/* This will remain set while we're still rendering the same message, then it wont be */