CVS commit by ogoffart: Remove the error message for the error 800. This arror may happen when opening lot of chat socket in the same time (for example, when downloading lots of msn picture) M +5 -2 msnnotifysocket.cpp 1.163 --- kdenetwork/kopete/protocols/msn/msnnotifysocket.cpp #1.162:1.163 @@ -213,8 +213,11 @@ void MSNNotifySocket::handleError( uint case 800: { - QString msg = i18n( "You are trying to change your status, or your display name too rapidly.\n" + //This happen when too much commends are sent to the server. + //the command will not be executed, too bad. + // ignore it for now, as we don't really know what command it was. +/* QString msg = i18#n( "You are trying to change your status, or your display name too rapidly.\n" "This might happen if you added yourself to your own contact list." ); KMessageBox::queuedMessageBox( Kopete::UI::Global::mainWidget(), KMessageBox::Sorry, msg, i18n( "MSN Plugin" ) ); - //FIXME: try to fix this problem + //FIXME: try to fix this problem*/ break; }