Skip to content

Commit

Permalink
Bug fix. Remove superfluous error log statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
goosemanjack committed Sep 23, 2019
1 parent 4901472 commit e069c79
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "digitrust",
"version": "1.5.36",
"version": "1.5.37",
"description": "Package for a universal ID for registered ad servers",
"main": "dist/digitrust.min.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions src/config/general.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"prod": {
"urls": {
"digitrustHostPath": "https://cdn.digitru.st/prod/1.5.36/",
"digitrustRedirect": "https://cdn.digitru.st/prod/1.5.36/redirect.html",
"digitrustIframe": "https://cdn.digitru.st/prod/1.5.36/dt.html",
"digitrustHostPath": "https://cdn.digitru.st/prod/1.5.37/",
"digitrustRedirect": "https://cdn.digitru.st/prod/1.5.37/redirect.html",
"digitrustIframe": "https://cdn.digitru.st/prod/1.5.37/dt.html",
"digitrustIdService": "https://cdn-cf.digitru.st/id/v1",
"optoutInfo": "http://www.digitru.st/about-this-notice/",
"adblockCheck": "http://stats.aws.rubiconproject.com/"
Expand Down Expand Up @@ -54,9 +54,9 @@
},
"build": {
"urls": {
"digitrustHostPath": "https://cdn.digitru.st/prod/1.5.35/",
"digitrustRedirect": "https://cdn.digitru.st/prod/1.5.35/redirect.html",
"digitrustIframe": "https://cdn.digitru.st/prod/1.5.35/dt.html",
"digitrustHostPath": "https://cdn.digitru.st/prod/1.5.36/",
"digitrustRedirect": "https://cdn.digitru.st/prod/1.5.36/redirect.html",
"digitrustIframe": "https://cdn.digitru.st/prod/1.5.36/dt.html",
"digitrustIdService": "https://cdn-cf.digitru.st/id/v1",
"optoutInfo": "http://www.digitru.st/about-this-notice/",
"adblockCheck": "http://stats.aws.rubiconproject.com/"
Expand Down
3 changes: 2 additions & 1 deletion src/modules/ConfigLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ function loadOver(newVals, targetObject) {
var k, v, vtype;
var next;
if (loadDepth++ > 7) {
console.error('DigiTrust load config over recurse');
// console.error('DigiTrust load config over recurse');
// TODO: Trace cause of over initialize and fix reset of loadDepth
return targetObject;
}
if (otype != 'object' || newVals == null) {
Expand Down

0 comments on commit e069c79

Please sign in to comment.