dbm-graph-api 1.1.25 → 1.1.26

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": "dbm-graph-api",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -13,7 +13,7 @@
13
13
  "dependencies": {
14
14
  "@aws-sdk/client-s3": "^3.741.0",
15
15
  "@aws-sdk/s3-request-presigner": "^3.741.0",
16
- "dbm": "^1.1.20",
16
+ "dbm": "^1.1.21",
17
17
  "mime": "^4.0.6",
18
18
  "sharp": "^0.33.5",
19
19
  "ws": "^8.18.0"
@@ -720,6 +720,14 @@ export const setupSite = function(aServer) {
720
720
  }
721
721
  }
722
722
 
723
+ if(fields["contentPreloadTags"]){
724
+ let currentArray = fields["contentPreloadTags"];
725
+ let currentArrayLength = currentArray.length;
726
+ for(let i = 0; i < currentArrayLength; i++) {
727
+ returnString += currentArray[i];
728
+ }
729
+ }
730
+
723
731
  if(site.disableSearchEngines) {
724
732
  returnString += `<meta name="robots" content="noindex, nofollow" />`;
725
733
  }