Fixing missing migration from e to a tags on the reading state.

This commit is contained in:
Vitor Pamplona 2024-11-26 18:51:30 -05:00
parent eea63b11c1
commit 7c6aff49f4

7
63.md
View File

@ -70,7 +70,8 @@ The `e` tag points to the latest scene the user has read.
{
"kind": 30298,
"tags": [
["d", "<root_event_id>"],
// d-tag defines the starting point so that if the user sees an interative post again, the client can find it.
["d", "<kind:pubkey:d-tag>"],
// cached to simplify preview purposes
["title", "<root_event_title>"],
@ -78,10 +79,10 @@ The `e` tag points to the latest scene the user has read.
["image", "<image url for preview>"],
// root with relay hint
["E", "<root_event_id>", "<relay_hint>"],
["A", "<kind:pubkey:d-tag>", "<relay_hint>"],
// current scene with relay hint
["e", "<event_id>", "<relay_hint>"],
["a", "<kind:pubkey:d-tag>", "<relay_hint>"],
// reading status
["status", "<new|reading|done>"]