Changed artwork folder and server

This commit is contained in:
Yorick Rommers
2015-11-01 13:59:15 +01:00
parent 05bf1bce21
commit d8a900ecb9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ namespace MusicPlayer
{
try
{
WebRequest req = WebRequest.Create((ip + "/music/artwork/"+album).Replace(" ", "%20"));
WebRequest req = WebRequest.Create((ip + "/music/.artwork/"+album).Replace(" ", "%20"));
WebResponse response = req.GetResponse();
Stream stream = response.GetResponseStream();
+2 -2
View File
@@ -17,8 +17,8 @@ namespace MusicPlayer
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
NetworkHandler nw = new NetworkHandler("http://jancokock.me");
//NetworkHandler nw = new NetworkHandler("http://imegumii.nl");
// NetworkHandler nw = new NetworkHandler("http://jancokock.me");
NetworkHandler nw = new NetworkHandler("http://imegumii.nl");
APIHandler api = new APIHandler(nw);
MainForm form = new MainForm();
PlaylistHandler pl = new PlaylistHandler(api);