Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunicorn committed Jul 15, 2024
1 parent 1ba3531 commit e02136d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ final suggestedUsersProvider = FutureProvider.family<List<FoundUser>, String>(
if (user.hasAvatar()) {
try {
avatar = await user.getAvatar(null).then((val) =>
MemoryImage(Uint8List.fromList(val.data()!.asTypedList())));
MemoryImage(Uint8List.fromList(val.data()!.asTypedList())),);
} catch (e, s) {
_log.severe('failure fetching avatar', e, s);
}
Expand Down

0 comments on commit e02136d

Please sign in to comment.