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
Currently if you pass an invalid/unused string to lock.on it just fails silently; because of this I spent the whole day trying to workout what was wrong only to finally realise that I had a typo in the string I was passing.
This should throw an error instead of doing nothing.
this.lock.on('INVAID_STRING', (error) => {
});
The text was updated successfully, but these errors were encountered:
Currently if you pass an invalid/unused string to
lock.on
it just fails silently; because of this I spent the whole day trying to workout what was wrong only to finally realise that I had a typo in the string I was passing.This should throw an error instead of doing nothing.
The text was updated successfully, but these errors were encountered: