forked from j62/ctbrec
1
0
Fork 0

Replace wrong username used to retrieve the token balance

This commit is contained in:
0xb00bface 2020-08-08 13:37:21 +02:00
parent 48964cc85f
commit cbd529d001
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class Stripchat extends AbstractSite {
throw new IOException("Account settings not available");
}
String username = Config.getInstance().getSettings().camsodaUsername;
String username = Config.getInstance().getSettings().stripchatPassword;
String url = baseUri + "/api/v1/user/" + username;
Request request = new Request.Builder().url(url).build();
try (Response response = getHttpClient().execute(request)) {