forked from j62/ctbrec
1
0
Fork 0

Fix Streamate favorites tab

This commit is contained in:
0xboobface 2019-01-08 14:17:26 +01:00
parent f05d9b32e2
commit 3f0ecf4805
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ public class StreamateFollowedService extends PaginatedScheduledService {
public List<Model> call() throws IOException, SAXException, ParserConfigurationException, XPathExpressionException {
httpClient.login();
String saKey = httpClient.getSaKey();
String _url = url + "&page_number=" + page + "&results_per_page=" + MODELS_PER_PAGE + "&sakey=" + saKey;
Long userId = httpClient.getUserId();
String _url = url + "&page_number=" + page + "&results_per_page=" + MODELS_PER_PAGE + "&sakey=" + saKey + "&userid=" + userId;
LOG.debug("Fetching page {}", _url);
Request request = new Request.Builder()
.url(_url)