chore: remove debugger statement

This commit is contained in:
鲁树人 2023-05-13 20:03:59 +01:00
parent d2621aae3c
commit fea58ce3f5

View File

@ -15,7 +15,6 @@ const decryptorFactories: CryptoFactory[] = [
];
bus.addEventHandler(DECRYPTION_WORKER_ACTION_NAME.DECRYPT, async (blobURI) => {
debugger;
const blob = await fetch(blobURI).then((r) => r.blob());
for (const factory of decryptorFactories) {