´´´ if(lastVisible < this.count){
const next = query(ref(db, "vids"),orderByChild('ts','desc'),startAfter(lastVisible),limitToFirst(2));
get(next).then((snapshot =>{
var val = Object.values(snapshot.val())
val.forEach(element => {
if(!this.links.includes(element)){
this.links.push(element)
console.log(this.links)
}else{console.log('it alredy exsists')}
});
lastVisible += Object.keys(snapshot.val()).length
}))}else{console.log('no vidoe left')}´´´