fix: responive layout improvements

This commit is contained in:
2024-05-22 15:07:42 +01:00
parent 2a6929b894
commit 19d732c272
7 changed files with 66 additions and 48 deletions

View File

@ -145,6 +145,7 @@ export function extractStreamInfo(ev?: NostrEvent) {
matchTag(t, "ends", v => (ret.ends = v));
matchTag(t, "service", v => (ret.service = v));
matchTag(t, "duration", v => (ret.duration = Number(v)));
matchTag(t, "published_at", v => (ret.ends = v));
}
const { regularTags, prefixedTags } = sortStreamTags(ev?.tags ?? []);
ret.tags = regularTags;