Fix feed post finder (scroll)
Deploy Livetrail / deploy (push) Successful in 18s

This commit is contained in:
2026-08-20 00:09:12 +02:00
parent 9242172a12
commit 73c5e45164
2 changed files with 29 additions and 25 deletions
+1 -2
View File
@@ -186,10 +186,9 @@ export default {
onMediaChange: async (oMedia) => {
this.hash.items = [this.project.codename, 'media', oMedia.id];
if(oMedia.set == 'post-medias') {
(await this.feed.goToPost('media', oMedia.id))?.panMapToMarker();
(await this.feed.findPost('media', oMedia.id))?.panMapToMarker();
if(!this.lightbox.hasMediaAfterCurrent()) {
await this.feed.getNextFeed();
await this.$nextTick();
this.lightbox.refreshAlbum();
}
}