daveappserver 0.7.12 → 0.7.15
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/appserver.js +4 -2
- package/package.json +2 -2
package/appserver.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var myVersion = "0.7.
|
|
1
|
+
var myVersion = "0.7.15", myProductName = "daveAppServer";
|
|
2
2
|
|
|
3
3
|
exports.start = startup;
|
|
4
4
|
exports.notifySocketSubscribers = notifySocketSubscribers;
|
|
@@ -1326,7 +1326,9 @@ function cleanFileStats (stats) { //4/19/21 by DW
|
|
|
1326
1326
|
}
|
|
1327
1327
|
function checkPendingConfirmation (confirmCode, callback) { //11/14/23 by DW
|
|
1328
1328
|
findPendingConfirmation (confirmCode, function (err, item) {
|
|
1329
|
-
|
|
1329
|
+
if (!err) { //10/6/24 by DW
|
|
1330
|
+
deletePendingConfirmation (item);
|
|
1331
|
+
}
|
|
1330
1332
|
callback (err); //return success or failure
|
|
1331
1333
|
});
|
|
1332
1334
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daveappserver",
|
|
3
3
|
"description": "Factored code that was appearing in all my servers.",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.15",
|
|
5
5
|
"main": "appserver.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type" : "git",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"daves3": "*",
|
|
26
26
|
"davehttp": "*",
|
|
27
27
|
"davemail": "*",
|
|
28
|
-
"wpidentity": "^0.4.
|
|
28
|
+
"wpidentity": "^0.4.14"
|
|
29
29
|
}
|
|
30
30
|
}
|