Skip to content

Commit

Permalink
Chore/update mediasoup (#29)
Browse files Browse the repository at this point in the history
* add notification method to error msg
* update dependencies
  • Loading branch information
pnts-se authored Aug 28, 2023
1 parent b117c2b commit dd442a7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@observertc/sfu-monitor-js": "1.1.1",
"debug": "^4.3.4",
"edumeet-common": "edumeet/edumeet-common#0.5.0",
"mediasoup": "3.12.3",
"mediasoup": "3.12.10",
"minimist": "^1.2.8",
"socket.io": "^4.6.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/RoomServerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class RoomServerConnection extends EventEmitter {
await this.pipeline.execute(context);

if (!context.handled)
throw new Error('no middleware handled the notification');
throw new Error(`no middleware handled the notification [method: ${notification.method}]`);
} catch (error) {
logger.error('notification() [error: %o]', error);
}
Expand Down
28 changes: 14 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2649,15 +2649,15 @@ [email protected]:
dependencies:
tmpl "1.0.5"

[email protected].3:
version "3.12.3"
resolved "https://registry.yarnpkg.com/mediasoup/-/mediasoup-3.12.3.tgz#3c82ab6cf6e100409c65cd58175707f3e7715494"
integrity sha512-73+YLmbBQ1oyU2AiA4CgCWVWs/rRzYnmHMWMpt7yvrOqogcuYal6bqRQN4Lb00zYRFpdYf6MHxWWbc/XlOspTA==
[email protected].10:
version "3.12.10"
resolved "https://registry.yarnpkg.com/mediasoup/-/mediasoup-3.12.10.tgz#aa07d1e9ea5e8f2a90ebce26b99ecae60ec1f4de"
integrity sha512-xOL/CSN4Cv0WwB9kGnf1ct2RvjOvVpy0VRIg5MshqFQr03FfwdGkejWbJfDeP5yPDIR9uWbvlPmv6HKJ+tRKTQ==
dependencies:
debug "^4.3.4"
h264-profile-level-id "^1.0.1"
node-fetch "^3.3.1"
supports-color "^9.3.1"
node-fetch "^3.3.2"
supports-color "^9.4.0"
tar "^6.1.15"
uuid "^9.0.0"

Expand Down Expand Up @@ -2768,10 +2768,10 @@ node-domexception@^1.0.0:
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==

node-fetch@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.1.tgz#b3eea7b54b3a48020e46f4f88b9c5a7430d20b2e"
integrity sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==
node-fetch@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b"
integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==
dependencies:
data-uri-to-buffer "^4.0.0"
fetch-blob "^3.1.4"
Expand Down Expand Up @@ -3280,10 +3280,10 @@ supports-color@^8.0.0:
dependencies:
has-flag "^4.0.0"

supports-color@^9.3.1:
version "9.3.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.3.1.tgz#34e4ad3c71c9a39dae3254ecc46c9b74e89e15a6"
integrity sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==
supports-color@^9.4.0:
version "9.4.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954"
integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==

supports-preserve-symlinks-flag@^1.0.0:
version "1.0.0"
Expand Down

0 comments on commit dd442a7

Please sign in to comment.