Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #1782, append .png to all image IDs (and implicitly URLs)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Oct 28, 2016
1 parent 8fe813f commit d7ebfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/servershot.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ ClipRewrites = class ClipRewrites {
let clip = this.shot.getClip(name);
if (clip.image && clip.isDataUrl()) {
this.toInsertClipIds.push(clip.id);
let imageId = uuid.v4();
let imageId = uuid.v4() + ".png";
this.toInsert[clip.id] = {
uuid: imageId,
url: linker.imageLinkWithHost(imageId),
Expand Down

0 comments on commit d7ebfbc

Please sign in to comment.