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:
|
for filter in filters:
|
||||||
filter_list.append(
|
filter_list.append(
|
||||||
NostrFilter(
|
NostrFilter(
|
||||||
event_ids=filter.ids, # type: ignore
|
event_ids=filter.ids or [],
|
||||||
kinds=filter.kinds, # type: ignore
|
kinds=filter.kinds, # type: ignore
|
||||||
authors=filter.authors, # type: ignore
|
authors=filter.authors or [],
|
||||||
since=filter.since, # type: ignore
|
since=filter.since, # type: ignore
|
||||||
until=filter.until, # type: ignore
|
until=filter.until, # type: ignore
|
||||||
event_refs=filter.e, # type: ignore
|
event_refs=filter.e, # type: ignore
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<div class="text-weight-bold"> Your endpoint:
|
<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>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
at
|
at
|
||||||
<p>
|
<p>
|
||||||
<!-- wss://{{host}}nostrclient/api/v1/relay -->
|
<!-- 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>
|
</p>
|
||||||
Only Admin users can manage
|
Only Admin users can manage
|
||||||
this extension.
|
this extension.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue