From: Anthony Minessale Date: Mon, 1 Aug 2011 13:43:39 +0000 (-0500) Subject: FS-3470 --resolve X-Git-Tag: v1.2-rc1~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5a4c25df29d94d73e6549fad72a67b8e1f5163d4;p=thirdparty%2Ffreeswitch.git FS-3470 --resolve --- diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index cbb51cbcc0..4db7ace809 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -4445,6 +4445,9 @@ SWITCH_STANDARD_API(uuid_fileman_function) if (switch_ivr_get_file_handle(psession, &fh) == SWITCH_STATUS_SUCCESS) { switch_ivr_process_fh(psession, cmd, fh); switch_ivr_release_file_handle(psession, &fh); + stream->write_function(stream, "+OK\n"); + } else { + stream->write_function(stream, "-ERR No File Handle!\n"); } switch_core_session_rwunlock(psession);