1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Backport pull request #4069 from jellyfin/release-10.8.z

Fix images sometimes not un-blurring

Original-merge: 4c99480c42

Merged-by: Bill Thornton <thornbill@users.noreply.github.com>

Backported-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
peterspenler 2022-10-27 00:06:20 -04:00 committed by Bill Thornton
parent 9439ea408e
commit 25e896ad6b
2 changed files with 2 additions and 1 deletions

View file

@ -55,6 +55,7 @@
- [Viperinius](https://github.com/Viperinius)
- [is343](https://github.com/is343)
- [Meet Pandya](https://github.com/meet-k-pandya)
- [Peter Spenler](https://github.com/peterspenler)
# Emby Contributors

View file

@ -83,7 +83,7 @@ worker.addEventListener(
source = entry;
}
if (entry.intersectionRatio > 0) {
if (entry.isIntersecting) {
if (source) {
fillImageElement(target, source);
}