comparison icon.c @ 258:2145f975ef69

- fixed a glitch in identi.ca icon pattern - added support for identi.ca default icon - enabled api based twitter access by default - added file name field to the debug messages
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 26 Nov 2008 14:32:09 +0900
parents c2620a99622b
children d45dd3589560
comparison
equal deleted inserted replaced
257:954753a52ed8 258:2145f975ef69
207 g_match_info_free(match_info); 207 g_match_info_free(match_info);
208 208
209 if(service == twitter_service) { 209 if(service == twitter_service) {
210 twitter_debug("fall back to twitter default icon\n"); 210 twitter_debug("fall back to twitter default icon\n");
211 url = g_strdup(TWITTER_DEFAULT_ICON_URL); 211 url = g_strdup(TWITTER_DEFAULT_ICON_URL);
212 }
213 else if(service == identica_service) {
214 twitter_debug("fall back to identica default icon\n");
215 url = g_strdup(IDENTICA_DEFAULT_ICON_URL);
212 } 216 }
213 else if(service == jisko_service) { 217 else if(service == jisko_service) {
214 twitter_debug("fall back to jisko default icon\n"); 218 twitter_debug("fall back to jisko default icon\n");
215 url = g_strdup(JISKO_DEFAULT_ICON_URL); 219 url = g_strdup(JISKO_DEFAULT_ICON_URL);
216 } 220 }