HTML files must have the ms-appx-web:// schema to be used in a WebView (#1123)

This commit is contained in:
Nathan Broadbent 2017-06-02 03:25:05 +07:00 коммит произвёл Matt Hargett
Родитель 5f94f29c49
Коммит cac1e8682d
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -110,6 +110,9 @@ namespace ReactNative.Views.Web
var uri = source.Value<string>("uri");
if (uri != null)
{
// HTML files need to be loaded with the ms-appx-web schema.
uri = uri.Replace("ms-appx:", "ms-appx-web:");
using (var request = new HttpRequestMessage())
{
request.RequestUri = new Uri(uri);