simple-photo-gallery 2.0.11-rc.14 → 2.0.11-rc.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -660,6 +660,9 @@ async function processMediaFile(mediaFile, mediaBasePath, thumbnailsPath, thumbn
|
|
|
660
660
|
if (updatedMediaFile.thumbnail) {
|
|
661
661
|
updatedMediaFile.thumbnail.path = path7.basename(thumbnailPath);
|
|
662
662
|
updatedMediaFile.thumbnail.pathRetina = path7.basename(thumbnailPathRetina);
|
|
663
|
+
if (mediaFile.thumbnail?.baseUrl) {
|
|
664
|
+
updatedMediaFile.thumbnail.baseUrl = mediaFile.thumbnail.baseUrl;
|
|
665
|
+
}
|
|
663
666
|
}
|
|
664
667
|
if (mediaFile.url) {
|
|
665
668
|
updatedMediaFile.url = mediaFile.url;
|
|
@@ -1160,7 +1163,7 @@ async function waitForUpdateCheck(checkPromise) {
|
|
|
1160
1163
|
// package.json
|
|
1161
1164
|
var package_default = {
|
|
1162
1165
|
name: "simple-photo-gallery",
|
|
1163
|
-
version: "2.0.11-rc.
|
|
1166
|
+
version: "2.0.11-rc.16"};
|
|
1164
1167
|
|
|
1165
1168
|
// src/index.ts
|
|
1166
1169
|
var program = new Command();
|