owl-cli 7.46.0 → 7.47.0
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.
|
@@ -708,7 +708,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
708
708
|
if (formSpecs && formSpecs.meta && formSpecs.meta.changeLogEnabled) {
|
|
709
709
|
var id = oldObj.id;
|
|
710
710
|
oldObj.id = id + "vvv" + oldObj._v;
|
|
711
|
-
if (formSpecs.meta.logPigeon) {
|
|
711
|
+
if (formSpecs.meta.logPigeon && pigeon.getPigeon) {
|
|
712
712
|
pigeon.getPigeon(formSpecs.meta.logPigeon).saveObject(oldObj.id, oldObj);
|
|
713
713
|
} else {
|
|
714
714
|
pigeon.saveObject(oldObj.id, oldObj);
|
|
@@ -1314,7 +1314,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
1314
1314
|
var currentVersion = obj._v;
|
|
1315
1315
|
|
|
1316
1316
|
var logPigeon = pigeon;
|
|
1317
|
-
if (formSpecs.meta.logPigeon) {
|
|
1317
|
+
if (formSpecs.meta.logPigeon && pigeon.getPigeon) {
|
|
1318
1318
|
logPigeon = pigeon.getPigeon(formSpecs.meta.logPigeon);
|
|
1319
1319
|
}
|
|
1320
1320
|
|