mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-01-13 11:47:14 +01:00
Fix issue with loading subscriptions on the Main activity
Signed-off-by: Balazs Toldi <balazs@toldi.eu>
This commit is contained in:
parent
d4d533c4f0
commit
2c6cc3e3d5
@ -1022,7 +1022,7 @@ public class MainActivity extends BaseActivity implements SortTypeSelectionCallb
|
|||||||
|
|
||||||
private void loadSubscriptions() {
|
private void loadSubscriptions() {
|
||||||
if (mAccessToken != null && !mFetchSubscriptionsSuccess) {
|
if (mAccessToken != null && !mFetchSubscriptionsSuccess) {
|
||||||
FetchSubscribedThing.fetchSubscribedThing(mRetrofit.getRetrofit(), mAccessToken, mAccountName, null,
|
FetchSubscribedThing.fetchSubscribedThing(mRetrofit.getRetrofit(), mAccessToken, mAccountQualifiedName, null,
|
||||||
new ArrayList<>(), new ArrayList<>(),
|
new ArrayList<>(), new ArrayList<>(),
|
||||||
new ArrayList<>(),
|
new ArrayList<>(),
|
||||||
new FetchSubscribedThing.FetchSubscribedThingListener() {
|
new FetchSubscribedThing.FetchSubscribedThingListener() {
|
||||||
@ -1034,7 +1034,7 @@ public class MainActivity extends BaseActivity implements SortTypeSelectionCallb
|
|||||||
mExecutor,
|
mExecutor,
|
||||||
new Handler(),
|
new Handler(),
|
||||||
mRedditDataRoomDatabase,
|
mRedditDataRoomDatabase,
|
||||||
mAccountName,
|
mAccountQualifiedName,
|
||||||
subscribedSubredditData,
|
subscribedSubredditData,
|
||||||
subscribedUserData,
|
subscribedUserData,
|
||||||
subredditData,
|
subredditData,
|
||||||
|
Loading…
Reference in New Issue
Block a user