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

Remove superfluous observer instance in lazyloader

This commit is contained in:
MrTimscampi 2020-04-12 03:54:09 +02:00
parent fc6a11bb4b
commit 03b614266e

View file

@ -8,7 +8,7 @@
const callback = this.options.callback;
const observer = new IntersectionObserver(
(entries, observer) => {
(entries) => {
entries.forEach(entry => {
callback(entry);
},