@openinc/parse-server-opendash 2.4.75 → 2.4.76
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/dist/hooks/MES_Order.js +1 -1
- package/package.json +1 -1
package/dist/hooks/MES_Order.js
CHANGED
|
@@ -104,7 +104,7 @@ async function init() {
|
|
|
104
104
|
}
|
|
105
105
|
// If the order is started and has a source, it is running
|
|
106
106
|
if (object.get("start") &&
|
|
107
|
-
object.get("start").getTime()
|
|
107
|
+
object.get("start").getTime() > nowThresholded &&
|
|
108
108
|
object.get("source") &&
|
|
109
109
|
!object.get("status")) {
|
|
110
110
|
object.set("status", "running");
|