quick fix
This commit is contained in:
parent
d6b4233541
commit
2b838abe3f
2 changed files with 4 additions and 4 deletions
|
|
@ -102,9 +102,9 @@ class NostrRouter:
|
|||
for filter in filters:
|
||||
filter_list.append(
|
||||
NostrFilter(
|
||||
event_ids=filter.ids, # type: ignore
|
||||
event_ids=filter.ids or [],
|
||||
kinds=filter.kinds, # type: ignore
|
||||
authors=filter.authors, # type: ignore
|
||||
authors=filter.authors or [],
|
||||
since=filter.since, # type: ignore
|
||||
until=filter.until, # type: ignore
|
||||
event_refs=filter.e, # type: ignore
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
</q-card-section>
|
||||
<q-card-section>
|
||||
<div class="text-weight-bold"> Your endpoint:
|
||||
<q-badge outline class="q-ml-sm text-subtitle2" color="primary" :label="`wss://${host}nostrclient/api/v1/relay`" />
|
||||
<q-badge outline class="q-ml-sm text-subtitle2" color="primary" :label="`wss://${host}/nostrclient/api/v1/relay`" />
|
||||
</div>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
|
|
@ -110,7 +110,7 @@
|
|||
at
|
||||
<p>
|
||||
<!-- wss://{{host}}nostrclient/api/v1/relay -->
|
||||
<q-badge outline class="q-ml-sm text-subtitle2" color="primary" :label="`wss://${host}nostrclient/api/v1/relay`" />
|
||||
<q-badge outline class="q-ml-sm text-subtitle2" color="primary" :label="`wss://${host}/nostrclient/api/v1/relay`" />
|
||||
</p>
|
||||
Only Admin users can manage
|
||||
this extension.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue