Hotfix for 2.3.1
After some debugging I found that the Pushbullet API does not work with comma characters in the modified_after field. Since this field can be a double value, and in Belgium the default conversion of a double to a string contains a comma, I changed the double to string conversion code in the getPushes method.
Reproduction of the error:
- Change your laptop's region setting to 'Dutch (Belgium)'
- Use a non integer DateTime value (as I added in the unit test)
- Execute the GetPushesAllSince unit test
- You will get the error above
Done to fix the issue:
Changed the Culture of the conversion to InvariantCulture.