Skip to content

Commit

Permalink
New UI, also shows debug log.
Browse files Browse the repository at this point in the history
  • Loading branch information
squelart committed Dec 13, 2017
1 parent 9c0da7d commit 277e298
Show file tree
Hide file tree
Showing 8 changed files with 700 additions and 45,780 deletions.
7 changes: 6 additions & 1 deletion extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ chrome.runtime.onConnect.addListener(function(port) {
value : JSON.stringify(results, null, 2)
});
})
.catch(err => { console.log(err.message); });
.catch(err => {
port.postMessage({
action : 'got-media-info-error',
value : err.toString()
});
});
break;
}
}
Expand Down
Loading

0 comments on commit 277e298

Please sign in to comment.