@basmilius/apple-raop 0.6.11 → 0.7.1

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.js +1 -5
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -497,11 +497,7 @@ class RtspClient extends Connection {
497
497
  this.#requests.delete(cseq);
498
498
  reject(new Error(`No response to CSeq ${cseq} (${targetUri})`));
499
499
  }, timeout);
500
- this.write(data).catch((err) => {
501
- clearTimeout(timer);
502
- this.#requests.delete(cseq);
503
- reject(err);
504
- });
500
+ this.write(data);
505
501
  const originalResolve = resolve;
506
502
  this.#requests.set(cseq, {
507
503
  resolve: (response) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/apple-raop",
3
3
  "description": "Implementation of Apple's RAOP protocol in Node.js.",
4
- "version": "0.6.11",
4
+ "version": "0.7.1",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -40,13 +40,13 @@
40
40
  }
41
41
  },
42
42
  "dependencies": {
43
- "@basmilius/apple-airplay": "0.6.11",
44
- "@basmilius/apple-common": "0.6.11",
45
- "@basmilius/apple-encoding": "0.6.11",
46
- "@basmilius/apple-encryption": "0.6.11"
43
+ "@basmilius/apple-airplay": "0.7.1",
44
+ "@basmilius/apple-common": "0.7.1",
45
+ "@basmilius/apple-encoding": "0.7.1",
46
+ "@basmilius/apple-encryption": "0.7.1"
47
47
  },
48
48
  "devDependencies": {
49
- "@basmilius/tools": "^2.24.0",
50
- "@types/bun": "^1.3.8"
49
+ "@basmilius/tools": "^2.25.0",
50
+ "@types/bun": "^1.3.9"
51
51
  }
52
52
  }