From kde-commits Wed Jul 09 03:26:57 2008 From: Carlo Segato Date: Wed, 09 Jul 2008 03:26:57 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/protocols/msn Message-Id: <1215574017.898051.31719.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121557402901091 SVN commit 829768 by segato: comment the check for the applicationId == 1 since pidgin send 0(maybe it's broken) BUG:159606 M +2 -1 incomingtransfer.cpp --- trunk/KDE/kdenetwork/kopete/protocols/msn/incomingtransfer.cpp #829767:829768 @@ -181,7 +181,8 @@ } } } - else if(message.header.dataSize == 4 && message.applicationIdentifier == 1) + //pidgin is probably broken since it sends 0 as appid but we don't need this check anyway + else if(message.header.dataSize == 4 /*&& message.applicationIdentifier == 1*/) { // Data preparation message. m_tempFile = new KTemporaryFile();