mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-05 17:30:38 +08:00
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:
@@ -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://");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user