/**
   * Set the muted on the media
   *
   * @param muted
   * @param callbackContext
   * @return
   */
  public boolean setMediaMuted(Boolean muted, CallbackContext callbackContext) {
    if (currentSession != null) {
      currentSession.mediaSetMuted(muted, genericCallback(callbackContext));
    } else {
      callbackContext.error("session_error");
    }

    return true;
  }