Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Fix TypeError: console.warning is not a function (#325)
Browse files Browse the repository at this point in the history
Co-authored-by: Joel Patteson <joelpatteson7@gmail.com>
  • Loading branch information
Joel-Patteson and Patto77 committed Jul 22, 2023
1 parent aa13c25 commit b3f966b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SignallingWebServer/cirrus.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ function forwardStreamerMessageToPlayer(streamer, msg) {
logForward(streamer.id, playerId, msg);
player.sendTo(msg);
} else {
console.warning("No playerId specified, cannot forward message: %s", msg);
console.warn("No playerId specified, cannot forward message: %s", msg);
}
}

Expand Down

0 comments on commit b3f966b

Please sign in to comment.