Reduce auth timeout

This commit is contained in:
Jon Staab
2024-09-05 15:42:58 -07:00
parent 8e6423f488
commit 3868daa04e
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ export class Tags extends (Fluent<Tag> as OmitStatics<typeof Fluent<Tag>, 'from'
static wrap = (p: Iterable<string[]>) => new Tags(Array.from(p).map(Tag.from))
static fromEvent = (event: {tags: string[][]}) => Tags.wrap(event.tags || [])
static fromEvent = (event: {tags: string[][]}) => Tags.wrap(event?.tags || [])
static fromEvents = (events: {tags: string[][]}[]) => Tags.wrap(events.flatMap(e => e.tags || []))