sending data: urls should work.

we'll need this for vCards

r/sr=sspitzer
This commit is contained in:
scott%scott-macgregor.org 2003-09-14 22:07:20 +00:00
Родитель f6b048af93
Коммит 532d779cea
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1706,7 +1706,7 @@ nsMsgNewURL(nsIURI** aInstancePtrResult, const char * aSpec)
nsCOMPtr<nsIIOService> pNetService(do_GetService(kIOServiceCID, &rv));
if (NS_SUCCEEDED(rv) && pNetService)
{
if (PL_strstr(aSpec, "://") == nsnull)
if (PL_strstr(aSpec, "://") == nsnull && strncmp(aSpec, "data:", 5))
{
//XXXjag Temporary fix for bug 139362 until the real problem(bug 70083) get fixed
nsCAutoString uri(NS_LITERAL_CSTRING("http://") + nsDependentCString(aSpec));