Skip to content

Commit 48eac37

Browse files
committed
chore: upstream update
1 parent 4c83fbc commit 48eac37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="utf-8" />
66
<meta name="apple-mobile-web-app-capable" content="yes" />
7-
<meta name="generator" content="slidesdown 0.11.0" />
7+
<meta name="generator" content="slidesdown 0.11.1" />
88
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
99
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
1010
<title>Slidesdown</title>

init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const main = async (defaults) => {
8787
const decompressedStream = blob.pipeThrough(new DecompressionStream("gzip"));
8888
return await new Response(decompressedStream).blob();
8989
}
90-
const slidesGz = Uint8Array.from(atob(decodeURI(customSlidesBase64Gzip)), c => c.charCodeAt(0))
90+
const slidesGz = Uint8Array.from(atob(decodeURI(customSlidesBase64Gzip.replaceAll('-', '+').replaceAll('_', '/'))), c => c.charCodeAt(0))
9191
// function buf2hex(buffer) { // buffer is an ArrayBuffer
9292
// return [...new Uint8Array(buffer)]
9393
// .map(x => x.toString(16).padStart(2, '0'))

0 commit comments

Comments
 (0)