daveappserver 0.6.38 → 0.6.39

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.
Files changed (2) hide show
  1. package/appserver.js +2 -2
  2. package/package.json +1 -1
package/appserver.js CHANGED
@@ -1,4 +1,4 @@
1
- var myVersion = "0.6.38", myProductName = "daveAppServer";
1
+ var myVersion = "0.6.39", myProductName = "daveAppServer";
2
2
 
3
3
  exports.start = startup;
4
4
  exports.notifySocketSubscribers = notifySocketSubscribers;
@@ -1064,7 +1064,7 @@ function cleanFileStats (stats) { //4/19/21 by DW
1064
1064
  else {
1065
1065
  var flFoundConfirm = false;
1066
1066
  stats.pendingConfirmations.forEach (function (item) {
1067
- if (item.magicString == emailConfirmCode) {
1067
+ if (item.magicString == magicString) {
1068
1068
  callback (undefined, item);
1069
1069
  flFoundConfirm = true;
1070
1070
  }
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.6.38",
4
+ "version": "0.6.39",
5
5
  "main": "appserver.js",
6
6
  "repository": {
7
7
  "type" : "git",