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 4480c6f commit 17e2a8cCopy full SHA for 17e2a8c
CHANGELOG.md
@@ -1,6 +1,12 @@
1
Changelog
2
=========
3
4
+## 0.15.1
5
+
6
+### Fixes
7
8
+- Fixed newsfeed content loading issue ([PR 1653](https://github.com/input-output-hk/daedalus/pull/1653))
9
10
## 0.15.0
11
12
### Features
source/renderer/app/api/utils/externalRequest.js
@@ -29,6 +29,7 @@ export const externalRequest = (
29
const request = requestMethod(options);
30
31
request.on('response', response => {
32
+ response.setEncoding('utf8');
33
let body = '';
34
response.on('data', chunk => {
35
body += chunk;
0 commit comments