Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Commit

Permalink
Fix network dapp icons not displaying in dapp-dapp-visible (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
axelchalon authored and amaury1093 committed Jul 11, 2018
1 parent ba8e2a1 commit 86c5a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electron/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ function createWindow () {
if (baseUrl &&
!details.url.startsWith(baseUrl) &&
// dapp-dapp-visible needs to be able to display the icons of other
// dapps, so as a temporary fix we allow access to all .png files
!url.parse(details.url).pathname.endsWith('.png')) {
// dapps, so as a temporary fix we allow access to all images requests
details.resourceType !== 'image') {
const sanitizedUrl = details.url.replace(/'/, '');

if (!webContents.isDestroyed()) {
Expand Down

0 comments on commit 86c5a61

Please sign in to comment.