diff --git a/telldus-core/service/Protocol.cpp b/telldus-core/service/Protocol.cpp index 574f177a..c228ded0 100644 --- a/telldus-core/service/Protocol.cpp +++ b/telldus-core/service/Protocol.cpp @@ -200,7 +200,7 @@ std::list Protocol::decodeData(const std::wstring &protocolName, co std::list retval; std::string decoded = ""; - if( protocolName == L"everflourish" ) { + if( protocolName.compare(L"everflourish") == 0 ) { decoded = ProtocolEverflourish::decodeData(data); if (decoded != "") { retval.push_back(decoded);