1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Android: Fix when downloading many encrypted items

This commit is contained in:
Laurent Cozic
2018-03-05 18:21:42 +00:00
parent 7a985c2c8a
commit 122ab83a84
3 changed files with 5 additions and 51 deletions

View File

@ -80,7 +80,9 @@ class DecryptionWorker {
// }
const ItemClass = BaseItem.itemClass(item);
this.logger().info('DecryptionWorker: decrypting: ' + item.id + ' (' + ItemClass.tableName() + ')');
// Don't log in production as it results in many messages when importing many items
// this.logger().info('DecryptionWorker: decrypting: ' + item.id + ' (' + ItemClass.tableName() + ')');
try {
await ItemClass.decrypt(item);
} catch (error) {