mirror of
https://github.com/nostr-protocol/nips.git
synced 2024-12-22 16:35:52 -05:00
Fixing missing migration from e to a tags on the reading state.
This commit is contained in:
parent
eea63b11c1
commit
7c6aff49f4
7
63.md
7
63.md
|
@ -70,7 +70,8 @@ The `e` tag points to the latest scene the user has read.
|
||||||
{
|
{
|
||||||
"kind": 30298,
|
"kind": 30298,
|
||||||
"tags": [
|
"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
|
// cached to simplify preview purposes
|
||||||
["title", "<root_event_title>"],
|
["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>"],
|
["image", "<image url for preview>"],
|
||||||
|
|
||||||
// root with relay hint
|
// root with relay hint
|
||||||
["E", "<root_event_id>", "<relay_hint>"],
|
["A", "<kind:pubkey:d-tag>", "<relay_hint>"],
|
||||||
|
|
||||||
// current scene with relay hint
|
// current scene with relay hint
|
||||||
["e", "<event_id>", "<relay_hint>"],
|
["a", "<kind:pubkey:d-tag>", "<relay_hint>"],
|
||||||
|
|
||||||
// reading status
|
// reading status
|
||||||
["status", "<new|reading|done>"]
|
["status", "<new|reading|done>"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user