teamwork now flags http 301 as a dummy since we have no way to follow moved urls with ecore-con

This commit is contained in:
discomfitor 2013-11-28 12:31:07 -05:00
parent 6ccc845a23
commit 875f4bdd91
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ download_media_status(void *data, int t EINA_UNUSED, Ecore_Con_Event_Url_Progres
{
E_FREE_FUNC(i->buf, eina_binbuf_free);
E_FREE_FUNC(i->client, ecore_con_url_free);
if ((status >= 400) || (status <= 300)) goto dummy;
if ((status >= 400) || (status <= 301)) goto dummy;
if (++i->tries < IMAGE_FETCH_TRIES)
{
i->client = ecore_con_url_new(i->addr);