We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a20372d commit 01e50c0Copy full SHA for 01e50c0
src/content/docs/stream/manage-video-library/using-webhooks.mdx
@@ -247,7 +247,7 @@ func main() {
247
248
const getUtf8Bytes = str =>
249
new Uint8Array(
250
- [...unescape(encodeURIComponent(str))].map(c => c.charCodeAt(0))
+ [...decodeURIComponent(encodeURIComponent(str))].map(c => c.charCodeAt(0))
251
);
252
253
const keyBytes = getUtf8Bytes(key);
0 commit comments