mirror of
https://github.com/immich-app/immich.git
synced 2026-05-21 07:06:31 -04:00
df016f9228
When the user pops back from the asset viewer mid-flight, the hero animation can fire its status listener after _ThumbnailTileState has been disposed. setState then throws a null check on State._element. Guard the listener with `if (!mounted) return;` — same pattern as #28300 in the album sync action.