chore: remove debugger statement

This commit is contained in:
Jixun Wu 2023-05-13 20:03:59 +01:00
parent d2621aae3c
commit fea58ce3f5
1 changed files with 0 additions and 1 deletions

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) {