Skip to content

Commit

Permalink
Fixed low image resolution in gallery.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtSoft committed Jun 13, 2024
1 parent 271a826 commit 47cb09b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions immich-slideshow.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var ImmichSlideshowVersion = "1.2.1";
var ImmichSlideshowVersion = "1.2.2";
var PlaceholderSrc = "/local/immich-slideshow/placeholder.png";

import {
Expand Down Expand Up @@ -134,7 +134,7 @@ class ImmichSlideshow extends LitElement {

async _getNextImageURL() {
var id = await this._getRandomID();
return this._apiGet("assets/" + id + "/thumbnail?size=thumbnail").
return this._apiGet("assets/" + id + "/thumbnail?size=preview").
then(response => response.blob()).
then(blob => URL.createObjectURL(blob));
}
Expand Down

0 comments on commit 47cb09b

Please sign in to comment.