Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
🐛 fix no suggestions for create post
Browse files Browse the repository at this point in the history
  • Loading branch information
lifenautjoe committed Aug 11, 2019
1 parent c72a925 commit 4cf7b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ class UserService {
int count,
Community withCommunity}) async {
HttpieResponse response = await _authApiService.getLinkedUsers(
count: count, withCommunity: withCommunity.name, maxId: maxId);
count: count, withCommunity: withCommunity?.name, maxId: maxId);
_checkResponseIsOk(response);
return UsersList.fromJson(json.decode(response.body));
}
Expand Down

0 comments on commit 4cf7b1b

Please sign in to comment.