Fixed issue causing publishes to fail, and added announcement to home page.

This commit is contained in:
2024-12-28 10:03:27 -08:00
parent f1d27a70f9
commit e99929876f
2 changed files with 21 additions and 4 deletions

View File

@@ -102,7 +102,7 @@ const objectToBase64 = async (obj) => {
reader.onloadend = () => {
if (typeof reader.result === 'string') {
// Remove 'data:application/jsonbase64,' prefix
const base64 = reader.result.replace('data:application/jsonbase64,', '')
const base64 = reader.result.replace('data:application/json;base64,', '')
console.log(`base64 resolution: ${base64}`)
resolve(base64)
} else {