Merge pull request #159 from jackorobot/fix_poco_get_integer

This commit is contained in:
Tristan Penman 2022-04-08 16:51:33 +10:00 committed by GitHub
commit 23724b97e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -346,7 +346,7 @@ public:
bool getInteger(int64_t &result) const
{
if (m_value.isInteger()) {
result = m_value.convert<int>();
result = m_value.convert<int64_t>();
return true;
}
return false;