Catch indexdb database destroy

This commit is contained in:
Chocobozzz 2018-05-15 16:52:19 +02:00
parent e998cf3cc7
commit 4935a6a1fd
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 12 additions and 15 deletions

View File

@ -183,7 +183,6 @@ export class PeertubeChunkStore extends EventEmitter {
private checkExpiration () {
this.expirationDB.transaction('rw', this.expirationDB.databases, async () => {
try {
// Update our database expiration since we are alive
await this.expirationDB.databases.put({
name: this.databaseName,
@ -198,10 +197,7 @@ export class PeertubeChunkStore extends EventEmitter {
await this.expirationDB.databases.where({ name: databaseToDeleteInfo.name }).delete()
}
} catch (err) {
console.error('Cannot check expiration.', err)
}
})
}).catch(err => console.error('Cannot check expiration.', err))
}
private dropDatabase (databaseName: string) {
@ -209,6 +205,7 @@ export class PeertubeChunkStore extends EventEmitter {
console.log('Deleting %s.', databaseName)
return dbToDelete.delete()
.catch(err => console.error('Cannot delete %s.', databaseName))
}
private nextTick (cb, err, val?) {