fix: User Status crash
This commit is contained in:
parent
540ff683d8
commit
0413b0c0b1
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class StatusListItem extends StatelessWidget {
|
|||
future: client.getProfileFromUserId(status.userId),
|
||||
builder: (context, snapshot) {
|
||||
final profile =
|
||||
snapshot.data ?? Profile(client.userID, Uri.parse(''));
|
||||
snapshot.data ?? Profile(status.userId.localpart, null);
|
||||
return InkWell(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
onTap: () => Navigator.of(context).push(
|
||||
|
|
Loading…
Add table
Reference in a new issue