Switch to the new blob storage server for Software Repository

This commit is contained in:
Gustave Monce
2020-04-09 11:35:04 +02:00
parent 019c47ad40
commit f438d0dd71
+3 -3
View File
@@ -136,7 +136,7 @@ namespace WPinternals
FileUrl = (FileUrlResult)Serializer3.ReadObject(JsonStream3); FileUrl = (FileUrlResult)Serializer3.ReadObject(JsonStream3);
if (FileUrl != null) if (FileUrl != null)
{ {
FfuUrl = FileUrl.url; FfuUrl = FileUrl.url.Replace("sr.azureedge.net", "softwarerepo.blob.core.windows.net");
} }
} }
@@ -225,7 +225,7 @@ namespace WPinternals
FileUrlDPL = (FileUrlResult)Serializer3.ReadObject(JsonStream3); FileUrlDPL = (FileUrlResult)Serializer3.ReadObject(JsonStream3);
if (FileUrlDPL != null) if (FileUrlDPL != null)
{ {
DPLUrl = FileUrlDPL.url; DPLUrl = FileUrlDPL.url.Replace("sr.azureedge.net", "softwarerepo.blob.core.windows.net");
} }
} }
@@ -266,7 +266,7 @@ namespace WPinternals
FileUrl = (FileUrlResult)Serializer3.ReadObject(JsonStream3); FileUrl = (FileUrlResult)Serializer3.ReadObject(JsonStream3);
if (FileUrl != null) if (FileUrl != null)
{ {
ENOSWUrl = FileUrl.url; ENOSWUrl = FileUrl.url.Replace("sr.azureedge.net", "softwarerepo.blob.core.windows.net");
} }
} }