Skip to content

Commit e0357ef

Browse files
author
Jonas Dellinger
committed
Updated Port to HTTPS-Version
1 parent ec32ba8 commit e0357ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SpotifyAPI/Local/RemoteHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ internal string Query(string request, bool oauth, bool cfid, int wait)
103103
parameters += "&returnon=login%2Clogout%2Cplay%2Cpause%2Cerror%2Cap";
104104
}
105105

106-
string address = "http://" + Host + ":4380/" + request + parameters;
106+
string address = "https://" + Host + ":4371/" + request + parameters;
107107
string response = "";
108108
try
109109
{
@@ -144,7 +144,7 @@ internal async Task<string> QueryAsync(string request, bool oauth, bool cfid, in
144144
parameters += "&returnon=login%2Clogout%2Cplay%2Cpause%2Cerror%2Cap";
145145
}
146146

147-
string address = "http://" + Host + ":4380/" + request + parameters;
147+
string address = "https://" + Host + ":4371/" + request + parameters;
148148
string response = "";
149149
try
150150
{

0 commit comments

Comments
 (0)