Merge branch 'krille/flickering-avatars' into 'main'

chore: Follow up flickering avatars

See merge request famedly/fluffychat!972
This commit is contained in:
Krille Fear 2022-07-30 08:53:31 +00:00
commit cd462d0ab1
1 changed files with 2 additions and 0 deletions

View File

@ -130,6 +130,7 @@ class _MxcImageState extends State<MxcImage> {
}
void _tryLoad(_) async {
if (_imageData != null) return;
try {
await _load();
} catch (_) {
@ -169,6 +170,7 @@ class _MxcImageState extends State<MxcImage> {
fit: widget.fit,
errorBuilder: (context, __, ___) {
_isCached = false;
_imageData = null;
WidgetsBinding.instance.addPostFrameCallback(_tryLoad);
return placeholder(context);
},