Skip to content

Commit

Permalink
Moved my website, fixed the app database URL
Browse files Browse the repository at this point in the history
  • Loading branch information
zdimension committed Jan 6, 2016
1 parent 56eb364 commit 8f26cc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SharpBoot/ISOInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ public static void UpdateISOs()
try
{
var wc = new WebClient {Encoding = Encoding.UTF8};
var appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.php?s");
appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.php?s");
var appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.xml");
appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.xml");

while (!appsxml.Contains("</apps>"))
{
appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.php?s");
appsxml = wc.DownloadString("http://www.zdimension.tk/sharpboot/apps.xml");
}
Settings.Default.AppsXml = appsxml;

Expand Down

0 comments on commit 8f26cc6

Please sign in to comment.