forked from j62/ctbrec
1
0
Fork 0

Use baseUrl in requestExtData

This commit is contained in:
0xboobface 2018-12-03 16:26:37 +01:00
parent b97449a980
commit cd903566de
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ public class MyFreeCamsClient {
long opts = json.getInt("opts");
long serv = json.getInt("serv");
long type = json.getInt("type");
String base = "http://www.myfreecams.com/php/FcwExtResp.php";
String base = mfc.getBaseUrl() + "/php/FcwExtResp.php";
String url = base + "?respkey="+respkey+"&opts="+opts+"&serv="+serv+"&type="+type;
Request req = new Request.Builder().url(url).build();
LOG.trace("Requesting EXTDATA {}", url);