Handle bogus IDB ConstraintError

This commit is contained in:
Thibaut Courouble 2016-07-01 10:58:12 -04:00
parent 11936b01ab
commit d88a3b263b

View file

@ -62,7 +62,7 @@ class app.DB
objectStoreNames = $.makeArray(db.objectStoreNames)
unless $.arrayDelete(objectStoreNames, 'docs')
db.createObjectStore('docs')
try db.createObjectStore('docs')
for doc in app.docs.all() when not $.arrayDelete(objectStoreNames, doc.slug)
try db.createObjectStore(doc.slug)