larasopp 1.0.8 → 1.0.9

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/lib/Subscribe.js CHANGED
@@ -76,7 +76,6 @@ class Subscribe {
76
76
  const Event = this.events.addListener(this.channel + ':' + event, callback);
77
77
  return {
78
78
  remove: () => {
79
- this.remove();
80
79
  Event.remove();
81
80
  }
82
81
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "larasopp",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Websocket client for laravel",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/Subscribe.ts CHANGED
@@ -67,7 +67,6 @@ class Subscribe {
67
67
  const Event = this.events.addListener(this.channel + ':' + event, callback);
68
68
  return {
69
69
  remove: () => {
70
- this.remove();
71
70
  Event.remove();
72
71
  }
73
72
  }