aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-05 15:17:09 +0200
committerChocobozzz <me@florianbigard.com>2021-08-05 15:17:09 +0200
commitff5f37e4f3d23ec8ade8baae5c1b73fe2ac7732c (patch)
tree03a03f040eea7e1072a9c2359159291091dc0d9d /client/src
parent3ce48a0cd062d9ff64d9411d702453503a49f3b1 (diff)
downloadPeerTube-ff5f37e4f3d23ec8ade8baae5c1b73fe2ac7732c.tar.gz
PeerTube-ff5f37e4f3d23ec8ade8baae5c1b73fe2ac7732c.tar.zst
PeerTube-ff5f37e4f3d23ec8ade8baae5c1b73fe2ac7732c.zip
Fix sha fallback
Diffstat (limited to 'client/src')
-rw-r--r--client/src/assets/player/p2p-media-loader/segment-validator.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/p2p-media-loader/segment-validator.ts b/client/src/assets/player/p2p-media-loader/segment-validator.ts
index 4a0caec5e..59245ceb4 100644
--- a/client/src/assets/player/p2p-media-loader/segment-validator.ts
+++ b/client/src/assets/player/p2p-media-loader/segment-validator.ts
@@ -85,7 +85,7 @@ async function sha256Hex (data?: ArrayBuffer) {
85 } 85 }
86 86
87 // Fallback for non HTTPS context 87 // Fallback for non HTTPS context
88 const shaModule = await import('sha.js') 88 const shaModule = (await import('sha.js') as any).default
89 return new shaModule.sha256().update(Buffer.from(data)).digest('hex') 89 return new shaModule.sha256().update(Buffer.from(data)).digest('hex')
90} 90}
91 91