Skip to content

Commit 36c3f26

Browse files
committed
Use zuneupdate.com until resources.zunes.me is online
1 parent 1860963 commit 36c3f26

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ZuneModCore/Mods/WebservicesMod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public class WebservicesMod : Mod
8686
// Patch ZuneServices.dll to use the new host instead of zune.net
8787
zsDllReader.BaseStream.Position = ZUNESERVICES_ENDPOINTS_BLOCK_OFFSET;
8888
string endpointBlock = System.Text.Encoding.Unicode.GetString(zsDllReader.ReadBytes(ZUNESERVICES_ENDPOINTS_BLOCK_LENGTH));
89+
endpointBlock = endpointBlock.Replace("resources." + oldHost, "www.zuneupdate.com"); // Use zuneupdate.com until resources.zunes.me is online
8990
endpointBlock = endpointBlock.Replace(oldHost, newHost);
9091
byte[] endpointBytes = System.Text.Encoding.Unicode.GetBytes(endpointBlock);
9192
if (endpointBytes.Length != ZUNESERVICES_ENDPOINTS_BLOCK_LENGTH)

0 commit comments

Comments
 (0)