Skip to content

Commit 18ead0b

Browse files
author
MattDHill
committed
use ref for delete instead of txid
1 parent 79601bf commit 18ead0b

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

src/scripts/sync.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -329,13 +329,16 @@ async function handleFollowBlock (manager: EntityManager, tx: BorkTxData): Promi
329329
}
330330

331331
async function handleDelete (manager: EntityManager, tx: BorkTxData): Promise<void> {
332-
const { time, content, senderAddress } = tx
332+
const { time, referenceId, senderAddress } = tx
333333

334334
// find parent from sender and content
335335
const bork = await manager.findOne(Bork, {
336-
txid: content,
337-
sender: { address: senderAddress },
338-
deletedAt: IsNull(),
336+
where: {
337+
txid: Like(`${referenceId}%`),
338+
sender: { address: senderAddress },
339+
deletedAt: IsNull(),
340+
},
341+
order: { createdAt: 'DESC' },
339342
})
340343
if (!bork) { return }
341344

src/util/mocks.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ export const mockTxs4: BorkTxData[] = [
251251
type: BorkType.Delete,
252252
nonce: null,
253253
position: null,
254-
content: 'c7c4e2977cc67cc16ee8fec757a61219deddcc8edfb6e20ab818af29f4be9373',
255-
referenceId: null,
254+
content: null,
255+
referenceId: 'c7',
256256
senderAddress: 'DDVFpYk4BHKvXQRshzxdaxJ4S13J2YPBfK',
257257
recipientAddress: null,
258258
mentions: [],

0 commit comments

Comments
 (0)