Fix contacts updating function call to following as well as follows contact (typo)

main
Hank Grabowski 2024-12-24 15:22:06 -05:00
rodzic e53b5848ed
commit 5bc5fddbe8
2 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -345,7 +345,7 @@ class AllContactsUpdater extends _$AllContactsUpdater {
var moreResults = true;
var maxId = -1;
const limit = 50;
var currentPage = PagingData(limit: limit);
var currentPage = const PagingData(limit: limit);
final originalContacts =
Set.from(ref.read(myContactsProvider(profile)).valueOrNull ?? []);
while (moreResults) {
@ -380,10 +380,10 @@ class AllContactsUpdater extends _$AllContactsUpdater {
}
moreResults = true;
currentPage = PagingData(limit: limit);
currentPage = const PagingData(limit: limit);
while (moreResults) {
await ref
.read(getMyFollowersProvider(profile, currentPage).future)
.read(myFollowingClientProvider(profile, currentPage).future)
.match(onSuccess: (following) {
for (final f in following.data) {
originalContacts.remove(f);
@ -402,7 +402,7 @@ class AllContactsUpdater extends _$AllContactsUpdater {
moreResults = following.next != null;
}, onError: (error) {
_acuLogger.severe(
'Error getting followers data: $error',
'Error getting your following data: $error',
Trace.current(),
);
});

Wyświetl plik

@ -1766,7 +1766,7 @@ class _UpdateStatusInternalProviderElement
}
String _$allContactsUpdaterHash() =>
r'84f97838de84166a1ed907d75eedaa1decf56daf';
r'40fac002c2cb5d493d034618182a9e1c64b58633';
abstract class _$AllContactsUpdater extends BuildlessNotifier<bool> {
late final Profile profile;