fix properties parsing with Neon

This commit is contained in:
Sven Sauleau 2023-03-20 09:55:46 +00:00
parent 777c4bc60f
commit 8508fd1fa6
2 changed files with 18 additions and 2 deletions

View File

@ -225,7 +225,15 @@ export async function getNotifications(db: Database, actor: Actor, domain: strin
for (let i = 0, len = results.length; i < len; i++) {
const result = results[i]
const properties = JSON.parse(result.properties)
let properties
if (typeof result.properties === 'object') {
// neon uses JSONB for properties which is returned as a deserialized
// object.
properties = result.properties
} else {
// D1 uses a string for JSON properties
properties = JSON.parse(result.properties)
}
const notifFromActorId = new URL(result.notif_from_actor_id)
const notifFromActor = await getActorById(db, notifFromActorId)

View File

@ -105,7 +105,15 @@ export async function toMastodonStatusFromRow(domain: string, db: Database, row:
console.warn('missing `row.publisher_actor_id`')
return null
}
const properties = JSON.parse(row.properties)
let properties
if (typeof row.properties === 'object') {
// neon uses JSONB for properties which is returned as a deserialized
// object.
properties = row.properties
} else {
// D1 uses a string for JSON properties
properties = JSON.parse(row.properties)
}
const actorId = new URL(row.publisher_actor_id)
const author = actors.personFromRow({