daveappserver 0.7.0 → 0.7.2
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 +3 -2
- package/package.json +1 -1
package/appserver.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var myVersion = "0.7.
|
|
1
|
+
var myVersion = "0.7.2", myProductName = "daveAppServer";
|
|
2
2
|
|
|
3
3
|
exports.start = startup;
|
|
4
4
|
exports.notifySocketSubscribers = notifySocketSubscribers;
|
|
@@ -1801,7 +1801,8 @@ function startup (options, callback) {
|
|
|
1801
1801
|
startDavemail (); //1/23/23 by DW
|
|
1802
1802
|
|
|
1803
1803
|
if (config.wordpress !== undefined) { //9/10/23 by DW
|
|
1804
|
-
wordpress.start (config.wordpress)
|
|
1804
|
+
wordpress.start (config.wordpress, function () {
|
|
1805
|
+
});
|
|
1805
1806
|
}
|
|
1806
1807
|
|
|
1807
1808
|
if (config.myDomain === undefined) {
|