artemave / translate_onhover

Browser translation extension
https://chrome.google.com/webstore/detail/aggiiclaiamajehmlfpkjmlbadmkledi
205 stars 61 forks source link

Easy fix for bug in Chrome on windows 8.1 #32

Closed robsterpsz closed 7 years ago

robsterpsz commented 7 years ago

Got this error:

Error in event handler for (unknown): SyntaxError: Unexpected end of JSON input at Object.TransOver.deserialize (chrome-extension://aggiiclaiamajehmlfpkjmlbadmkledi/lib/transover_utils.js:11:16) at chrome-extension://aggiiclaiamajehmlfpkjmlbadmkledi/contentscript.js:294:41

I think it's related to a bug in lib/transover_utils.js (line 15):

WHERE IT SAYS:

if (e.toString().match(/SyntaxError: Unexpected (token|end of input)/)) {

IT SHOULD SAY:

if (e.toString().match(/SyntaxError/)) {

Hope that helps,

Cheers!