mirror of
https://github.com/status-im/react-native.git
synced 2025-02-06 06:34:01 +00: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:
parent
2f7da48813
commit
f850e61fdb
@ -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://");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user