Skip to content

Commit

Permalink
Merge pull request #109 from 10gen/electron-0.30
Browse files Browse the repository at this point in the history
Upgrade to electron 0.30.5
  • Loading branch information
imlucas committed Aug 25, 2015
2 parents 99ecf53 + 0754566 commit 822638d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The MongoDB GUI.",
"version": "0.3.0",
"main": "main.js",
"electron_version": "0.29.2",
"electron_version": "0.30.5",
"product_name": "MongoDB Scout",
"authors": "MongoDB Inc.",
"check": {
Expand Down
2 changes: 1 addition & 1 deletion src/electron/window-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports.create = function(opts) {
debug('got new-window event!', event, url, frameName, disposition);
event.preventDefault();
module.exports.create({
url: 'file://' + RESOURCES + '/index.html' + url.replace('file://', '')
url: 'file://' + RESOURCES + '/index.html' + decodeURIComponent(url.replace('file://', ''))
});
});

Expand Down

0 comments on commit 822638d

Please sign in to comment.