Fix content:// uris not loading in Nodes

Summary:
In Ads Manager, images weren't loading when they were using
content:// as their uri.

Differential Revision: D3645303
This commit is contained in:
Ahmed El-Helw 2016-07-29 16:34:14 -07:00
parent 2f7da48813
commit f850e61fdb
1 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@ import com.facebook.imagepipeline.request.ImageRequestBuilder;
source.startsWith("http://") ||
source.startsWith("https://") ||
source.startsWith("data:") ||
source.startsWith("file:///");
source.startsWith("file:///") ||
source.startsWith("content://");
}
}