show that relay.info.nips must be a string

This commit is contained in:
Doug Hoyte
2024-10-18 18:12:09 -04:00
parent 29d7afe6c3
commit 421463cf4d
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ config:
desc: "NIP-11: URL pointing to an image to be used as an icon for the relay" desc: "NIP-11: URL pointing to an image to be used as an icon for the relay"
default: "" default: ""
- name: relay__info__nips - name: relay__info__nips
desc: "List of supported lists as JSON array, or empty string to use default. Example: [1,2]" desc: "List of supported lists as JSON array, or empty string to use default. Example: \"[1,2]\""
default: "" default: ""
- name: relay__maxWebsocketPayloadSize - name: relay__maxWebsocketPayloadSize

View File

@ -68,7 +68,7 @@ relay {
# NIP-11: URL pointing to an image to be used as an icon for the relay # NIP-11: URL pointing to an image to be used as an icon for the relay
icon = "" icon = ""
# List of supported lists as JSON array, or empty string to use default. Example: [1,2] # List of supported lists as JSON array, or empty string to use default. Example: "[1,2]"
nips = "" nips = ""
} }