1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-22 00:42:04 +02:00

Fix bonehead error

This commit is contained in:
Jeff Mitchell 2011-02-12 20:59:46 -05:00
parent d1e0b2cca2
commit eccf96b2e2

@ -306,7 +306,7 @@ TwitterPlugin::directMessages( const QList< QTweetDMStatus > &messages )
qDebug() << part;
if ( splitList.length() < 5 )
continue;
if ( splitList[0] != "TOMAHAWKPEERSTART" )
if ( splitList[0] != "TOMAHAWKPEER" )
continue;
if ( !splitList[1].startsWith( "Host=" ) || !splitList[2].startsWith( "Port=" ) || !splitList[3].startsWith( "Node=" ) || !splitList[4].startsWith( "PKey=" ) )
continue;