1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

Fix video not loading #808

Route collision with thumbnail path and video path. Results in videos not loading properly.
This commit is contained in:
Steven Bower 2024-02-06 09:01:35 +08:00 committed by GitHub
parent 649e7a9a7e
commit da9c79a533
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,9 +16,9 @@ export class GalleryRouter {
this.addGetImageIcon(app); this.addGetImageIcon(app);
this.addGetVideoIcon(app); this.addGetVideoIcon(app);
this.addGetResizedPhoto(app); this.addGetResizedPhoto(app);
this.addGetBestFitVideo(app);
this.addGetVideoThumbnail(app); this.addGetVideoThumbnail(app);
this.addGetImage(app); this.addGetImage(app);
this.addGetBestFitVideo(app);
this.addGetVideo(app); this.addGetVideo(app);
this.addGetMetaFile(app); this.addGetMetaFile(app);
this.addGetBestFitMetaFile(app); this.addGetBestFitMetaFile(app);