total5 0.0.18-1 → 0.0.18-3

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/changelog.txt CHANGED
@@ -6,6 +6,7 @@
6
6
  - added `flow.proxytimeout {Number}` property
7
7
  - extended the `message.send(output, data, [clone_data], [check(from, to, output, input)])` method by adding `check` argument
8
8
  - extended `LDAP()` options by adding a new option `attributes = { thumbnailPhoto: 'buffer' }` for custom parsing data
9
+ - fixed Flow error handling
9
10
 
10
11
  ========================
11
12
  0.0.17
package/flowstream.js CHANGED
@@ -1747,7 +1747,7 @@ function sendmessage(instance, message, event) {
1747
1747
  message.destroy();
1748
1748
 
1749
1749
  } catch (e) {
1750
- instance.main.error(e, 'instance_message', message);
1750
+ instance.main.error(e, 'instance_message', message.to);
1751
1751
  message.destroy();
1752
1752
  }
1753
1753
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "total5",
3
- "version": "0.0.18-1",
3
+ "version": "0.0.18-3",
4
4
  "description": "Total.js framework v5",
5
5
  "main": "index.js",
6
6
  "directories": {