Changed to a better compare function for protocol
This commit is contained in:
parent
c7d51b249f
commit
f5b832c3c6
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ std::list<std::string> Protocol::decodeData(const std::wstring &protocolName, co
|
||||||
std::list<std::string> retval;
|
std::list<std::string> retval;
|
||||||
std::string decoded = "";
|
std::string decoded = "";
|
||||||
|
|
||||||
if( protocolName == L"everflourish" ) {
|
if( protocolName.compare(L"everflourish") == 0 ) {
|
||||||
decoded = ProtocolEverflourish::decodeData(data);
|
decoded = ProtocolEverflourish::decodeData(data);
|
||||||
if (decoded != "") {
|
if (decoded != "") {
|
||||||
retval.push_back(decoded);
|
retval.push_back(decoded);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue