Skip to content

Commit

Permalink
Merge pull request #1548 from SkorpionNL/patch-2
Browse files Browse the repository at this point in the history
Fix for Sound Level Subtype
  • Loading branch information
gizmocuz committed May 21, 2017
2 parents 6976ed2 + f32c48e commit fe3043b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion push/BasePush.cpp
Expand Up @@ -579,7 +579,7 @@ std::string CBasePush::ProcessSendValue(const std::string &rawsendValue, const i
}
else if (vType == "Sound Level")
{
sprintf(szData,"%d", nValue);
strcpy(szData, rawsendValue.c_str());
}

else if (vType == "Status")
Expand Down

0 comments on commit fe3043b

Please sign in to comment.