We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6f26d3 commit ebfc8f0Copy full SHA for ebfc8f0
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# Changelog
2
-
+## Version 3.1.x
3
+ - [FIX] SecureWrite crash (#54)
4
+
5
## Version 3.1.2 (2020-04-18)
6
- [FIX] Compilation error on fields order (#43)
7
- [FIX] Invalid precision constant for microseconds (#49)
src/InfluxDbClient.cpp
@@ -227,7 +227,7 @@ bool InfluxDBClient::init() {
227
}
228
_httpClient.setReuse(false);
229
230
- _httpClient.setUserAgent(UserAgent);
+ _httpClient.setUserAgent(FPSTR(UserAgent));
231
return true;
232
233
0 commit comments