Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-09-07 16:04:56 +0300
committerJoas Schilling <coding@schilljs.com>2020-09-07 16:04:56 +0300
commitffe10f68241b1c7528d5e4dbe20030c8cb5adcf4 (patch)
treecd70dc134a691792aef95d647cfc212dcf23c2b8
parentc7989f8c854bcdd9ff0b4c6c6757c7728cf49bf5 (diff)
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/workflowengine/lib/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Manager.php b/apps/workflowengine/lib/Manager.php
index 8d562a753b3..fefeb9230e6 100644
--- a/apps/workflowengine/lib/Manager.php
+++ b/apps/workflowengine/lib/Manager.php
@@ -155,7 +155,7 @@ class Manager implements IManager {
$result = $query->execute();
$operations = [];
while ($row = $result->fetch()) {
- $eventNames = \json_decode($row['casted_events']);
+ $eventNames = \json_decode($row['events']);
$operation = $row['class'];
$entity = $row['entity'];