@basmilius/apple-rtsp 0.13.3 → 0.13.4

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -0
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -353,6 +353,8 @@ var RtspClient = class extends Connection {
353
353
  } else this.context.logger.warn("[rtsp]", `Unexpected response for CSeq ${cseq}`);
354
354
  }
355
355
  } catch (err) {
356
+ this.#encryptedBuffer = Buffer.alloc(0);
357
+ this.#buffer = Buffer.alloc(0);
356
358
  this.context.logger.error("[rtsp]", "onRtspData()", err);
357
359
  this.emit("error", err);
358
360
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/apple-rtsp",
3
3
  "description": "RTSP protocol implementation for Apple Protocols.",
4
- "version": "0.13.3",
4
+ "version": "0.13.4",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -41,8 +41,8 @@
41
41
  }
42
42
  },
43
43
  "dependencies": {
44
- "@basmilius/apple-common": "0.13.3",
45
- "@basmilius/apple-encoding": "0.13.3"
44
+ "@basmilius/apple-common": "0.13.4",
45
+ "@basmilius/apple-encoding": "0.13.4"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/bun": "^1.3.11",