nostrver-se / nostr-php

PHP helper library for Nostr https://nostr-php.dev
https://nostr-php.dev
MIT License
50 stars 15 forks source link

Tags are not formatted as an array #42

Closed Sebastix closed 10 months ago

Sebastix commented 10 months ago

When you try to publish an event with tags, the tags are not formatted as a array in the serialized string:

{
  ...
  "tags": {
     "title":"Long form content title test"
  }
}

which should be formatted to:

{
  ...
  "tags": [
     ["title", "Long form content title test"]
  ]
}