Merge pull request #398 from cloudflare/sven/fix-properties-parsing-neon

fix properties parsing with Neon
pull/399/head
Sven Sauleau 2023-03-20 11:01:07 +01:00 zatwierdzone przez GitHub
commit b1038f355b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 18 dodań i 2 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -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({