You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting this error on the console, raised on line 72 of content.js.
I have "fixed" it by changing this line from if (!app.isStartAllowed() || !app.checkEventForShortcut(e, userData.runShortcut))
to if (!app.isStartAllowed() || !userData || !app.checkEventForShortcut(e, userData.runShortcut))
The text was updated successfully, but these errors were encountered:
I'm getting this error on the console, raised on line 72 of content.js.
I have "fixed" it by changing this line from
if (!app.isStartAllowed() || !app.checkEventForShortcut(e, userData.runShortcut))
to
if (!app.isStartAllowed() || !userData || !app.checkEventForShortcut(e, userData.runShortcut))
The text was updated successfully, but these errors were encountered: