diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 4c4929728cb1a5049847ae136d6105c516cb40dc..8dfffd518d2208ce2b51bfca0903dee76dbaceba 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -3063,10 +3063,11 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_ if (ast_streamfile(chan, prefile, chan->language) > -1) res = ast_waitstream(chan, ecodes); #ifdef ODBC_STORAGE - if(success == -1) - /*We couldn't retrieve the file from the database, but we found it on the file system. Let's put it in the database*/ + if (success == -1) { + /* We couldn't retrieve the file from the database, but we found it on the file system. Let's put it in the database. */ ast_debug(1, "Greeting not retrieved from database, but found in file storage. Inserting into database\n"); store_file(prefile, vmu->mailbox, vmu->context, -1); + } #endif } else { ast_debug(1, "%s doesn't exist, doing what we can\n", prefile);