From 91a84722d0c3781382343d0039f2f12cb478dd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E6=A0=91=E4=BA=BA?= Date: Fri, 20 Sep 2024 23:47:41 +0100 Subject: [PATCH] fix: CI build issue with external um_crypto path --- src/decrypt-worker/worker/decrypt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decrypt-worker/worker/decrypt.ts b/src/decrypt-worker/worker/decrypt.ts index 5f75690..7c146c9 100644 --- a/src/decrypt-worker/worker/decrypt.ts +++ b/src/decrypt-worker/worker/decrypt.ts @@ -4,7 +4,7 @@ import { allCryptoFactories } from '../Deciphers.ts'; import { toBlob } from '~/decrypt-worker/util/buffer.ts'; import { DecipherFactory, DecipherInstance, Status } from '~/decrypt-worker/Deciphers.ts'; import { UnsupportedSourceFile } from '~/decrypt-worker/util/DecryptError.ts'; -import { ready as umCryptoReady } from '../../../../lib_um_crypto_rust/um_wasm_loader'; +import { ready as umCryptoReady } from '@unlock-music/crypto'; import { go } from '~/util/go.ts'; import { detectAudioExtension } from '~/decrypt-worker/util/audioType.ts';