Fix bug in credentialsAvailable for Streamate

It was using the username for Chaturbate. Whoopsy!
This commit is contained in:
0xb00bface 2020-12-05 16:10:41 +01:00
parent f79441d414
commit c6dd2bb06c
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ public class Streamate extends AbstractSite {
@Override
public boolean credentialsAvailable() {
String username = Config.getInstance().getSettings().username;
String username = Config.getInstance().getSettings().streamateUsername;
return StringUtil.isNotBlank(username);
}