You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-09-01 21:21:58 +03:00
Remove unused args
This commit is contained in:
@@ -279,7 +279,7 @@ MatrixCall.prototype.setLocalVideoMuted = function(muted) {
|
|||||||
* @return {Boolean} True if the local preview video is muted, else false
|
* @return {Boolean} True if the local preview video is muted, else false
|
||||||
* (including if the call is not set up yet).
|
* (including if the call is not set up yet).
|
||||||
*/
|
*/
|
||||||
MatrixCall.prototype.isLocalVideoMuted = function(muted) {
|
MatrixCall.prototype.isLocalVideoMuted = function() {
|
||||||
if (!this.localAVStream) {
|
if (!this.localAVStream) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -306,7 +306,7 @@ MatrixCall.prototype.setMicrophoneMuted = function(muted) {
|
|||||||
* @return {Boolean} True if the mic is muted, else false (including if the call
|
* @return {Boolean} True if the mic is muted, else false (including if the call
|
||||||
* is not set up yet).
|
* is not set up yet).
|
||||||
*/
|
*/
|
||||||
MatrixCall.prototype.isMicrophoneMuted = function(muted) {
|
MatrixCall.prototype.isMicrophoneMuted = function() {
|
||||||
if (!this.localAVStream) {
|
if (!this.localAVStream) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user