diff options
-rw-r--r-- | audio/telephony-maemo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/telephony-maemo.c b/audio/telephony-maemo.c index be903c15..b2849a8c 100644 --- a/audio/telephony-maemo.c +++ b/audio/telephony-maemo.c @@ -776,8 +776,8 @@ void telephony_call_hold_req(void *telephony_device, const char *cmd) } break; case '3': - call = find_call_with_status(CSD_CALL_STATUS_HOLD); - if (call) + if (find_call_with_status(CSD_CALL_STATUS_HOLD) || + find_call_with_status(CSD_CALL_STATUS_WAITING)) err = create_conference(); break; case '4': |