1
0
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:
Kegan Dougal
2015-10-19 16:50:16 +01:00
parent 9164debf03
commit dd8adef9ed

View File

@@ -279,7 +279,7 @@ MatrixCall.prototype.setLocalVideoMuted = function(muted) {
* @return {Boolean} True if the local preview video is muted, else false
* (including if the call is not set up yet).
*/
MatrixCall.prototype.isLocalVideoMuted = function(muted) {
MatrixCall.prototype.isLocalVideoMuted = function() {
if (!this.localAVStream) {
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
* is not set up yet).
*/
MatrixCall.prototype.isMicrophoneMuted = function(muted) {
MatrixCall.prototype.isMicrophoneMuted = function() {
if (!this.localAVStream) {
return false;
}