summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-08-18 11:43:54 -0700
committerMatthew Miller <matthew@millerti.me>2023-08-18 11:43:54 -0700
commit01437da8b884645824f4fa36e872c8519259f26a (patch)
tree9063c072511e70609aaba0030151ec43f18d1f08 /packages/server/src
parentb7dc3e38cb9a1f99508a786b58ae61ec035f317d (diff)
Finish thought in getWebCrypto
Diffstat (limited to 'packages/server/src')
-rw-r--r--packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
index 1a26d77..1327392 100644
--- a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
+++ b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
@@ -28,7 +28,7 @@ export async function getWebCrypto(): Promise<Crypto> {
const _crypto: Crypto = globalThis.crypto;
if (!_crypto) {
- // We tried to access it both in Node and
+ // We tried to access it both in Node and globally, so bail out
throw new MissingWebCrypto();
}