Skip to content

Commit

Permalink
Fix video not loading #808
Browse files Browse the repository at this point in the history
Route collision with thumbnail path and video path. Results in videos not loading properly.
  • Loading branch information
BluSyn authored Feb 6, 2024
1 parent 649e7a9 commit da9c79a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/routes/GalleryRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export class GalleryRouter {
this.addGetImageIcon(app);
this.addGetVideoIcon(app);
this.addGetResizedPhoto(app);
this.addGetBestFitVideo(app);
this.addGetVideoThumbnail(app);
this.addGetImage(app);
this.addGetBestFitVideo(app);
this.addGetVideo(app);
this.addGetMetaFile(app);
this.addGetBestFitMetaFile(app);
Expand Down

0 comments on commit da9c79a

Please sign in to comment.