@social-mail/social-mail-web-server 1.8.490 → 1.8.491

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-web-server",
3
- "version": "1.8.490",
3
+ "version": "1.8.491",
4
4
  "description": "## Phase 1",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -162,6 +162,7 @@ export default class WebSiteContentService
162
162
  .thenByDescending({ top }, (p) => (x) => x.name === p.top)
163
163
  .first());
164
164
  if (!child) {
165
+ console.warn(JSON.stringify({ top, error: "not found", folderID }));
165
166
  return null;
166
167
  }
167
168
  if (paths.length === 0) {
@@ -348,7 +348,6 @@ export default class WebContentTranspileService
348
348
  const contentService = ServiceProvider.resolve(this, WebSiteContentService);
349
349
  const fileInfo = await contentService.getFileInfo(siteFolder.snapshotFolderID, ... rewritePath.split("/"));
350
350
  if (!fileInfo) {
351
- console.warn(JSON.stringify({ value, rewritePath, error: "File not found", currentPath }));
352
351
  return value;
353
352
  }
354
353
  const eFileContentID = this.ecs.general.encrypt(fileInfo.fileContentID.toString());