Skip to content

Commit 17e2a8c

Browse files
darko-mijicnikolaglumac
authored andcommitted
[DDW-1056] Newsfeed content loading issue (#1653)
* [DDW-1056] Fix newsfeed content loading issue * [DDW-1056] Update CHANGELOG.md
1 parent 4480c6f commit 17e2a8c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

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+
410
## 0.15.0
511

612
### Features

source/renderer/app/api/utils/externalRequest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const externalRequest = (
2929
const request = requestMethod(options);
3030

3131
request.on('response', response => {
32+
response.setEncoding('utf8');
3233
let body = '';
3334
response.on('data', chunk => {
3435
body += chunk;

0 commit comments

Comments
 (0)