chore: don't show presence indicator on small avatars (#2386)

This commit is contained in:
ggurdin 2025-04-07 14:57:29 -04:00 committed by GitHub
parent dde64d0da6
commit f396083220
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,10 @@ class Avatar extends StatelessWidget {
),
),
),
if (presenceUserId != null)
// #Pangea
// if (presenceUserId != null)
if (presenceUserId != null && size >= 32.0)
// Pangea#
PresenceBuilder(
client: client,
userId: presenceUserId,