dumbmatter / fakeIndexedDB

A pure JS in-memory implementation of the IndexedDB API
Apache License 2.0
562 stars 69 forks source link

Avoid processTransactions stall on tx with no requests #55

Closed medmunds closed 4 years ago

medmunds commented 4 years ago

Possible fix for stall in Database.processTransactions if a transaction doesn't contain any requests: attach the event listeners to the transaction before starting it.

(Let me know if you'd prefer some other approach. Or I certainly won't be offended if you want to just modify the PR directly.)

Fixes #54