Skip to content

Commit

Permalink
follow-up bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
cadeyrn committed Jul 10, 2018
1 parent 1563654 commit 0d97ee3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Release Notes

### Version 14.0.2 (2018-07-09)

- [BUGFIX] The bugfix in 14.0.1 was broken, sorry about that!

### Version 14.0.1 (2018-07-09)

- [BUGFIX] There was a regression in version 14.0.0 that caused the local file option to stop working, fixes
Expand Down
2 changes: 1 addition & 1 deletion src/js/core/newtab.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const newtab = {
switch (options.type) {
case 'custom_url':
// return early if there is no valid url
if (!URI_REGEX.test(url)) {
if (!URI_REGEX.test(options.url)) {
newtab.openNewTabPage('', false);
break;
}
Expand Down

0 comments on commit 0d97ee3

Please sign in to comment.