diff options
Diffstat (limited to 'plugins/audio/audio-api.c')
-rw-r--r-- | plugins/audio/audio-api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/audio/audio-api.c b/plugins/audio/audio-api.c index 0fcc73d1..fd5f620f 100644 --- a/plugins/audio/audio-api.c +++ b/plugins/audio/audio-api.c @@ -158,7 +158,7 @@ STATIC json_object* mute (AFB_request *request) { /* AFB_SESSION_CHECK */ } /* "?value=" parameter is "0" or "off" */ - if ( atoi(value) == 0 || !strcasecmp(value, "off") ) { + else if ( atoi(value) == 0 || !strcasecmp(value, "off") ) { ctx->mute = 0; _alsa_set_mute (ctx->idx, ctx->mute); |