]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Don't care if the extension given doesn't exist for subscription based MWI.
authorJoshua Colp <jcolp@digium.com>
Mon, 18 Feb 2008 15:33:14 +0000 (15:33 +0000)
committerJoshua Colp <jcolp@digium.com>
Mon, 18 Feb 2008 15:33:14 +0000 (15:33 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@103763 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 979e5748a33d0d0e45c499589a4a5d7a200b5fc1..d3baa8d3f3f460d17e215289465b6cb8c9f0a865 100644 (file)
@@ -14863,7 +14863,7 @@ static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req,
        parse_ok_contact(p, req);
 
        build_contact(p);
-       if (gotdest) {
+       if (strcmp(event, "message-summary") && gotdest) {
                transmit_response(p, "404 Not Found", req);
                ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);    
                if (authpeer)