Fix wrong index of QTs for links that are not QTs
This commit is contained in:
parent
ad774325df
commit
6f430ca0f5
1 changed files with 18 additions and 17 deletions
|
@ -942,12 +942,13 @@ function Status({
|
||||||
});
|
});
|
||||||
if (previewMode) return;
|
if (previewMode) return;
|
||||||
// Unfurl Mastodon links
|
// Unfurl Mastodon links
|
||||||
dom
|
Array.from(
|
||||||
.querySelectorAll(
|
dom.querySelectorAll(
|
||||||
'a[href]:not(.u-url):not(.mention):not(.hashtag)',
|
'a[href]:not(.u-url):not(.mention):not(.hashtag)',
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
.filter((a) => isMastodonLinkMaybe(a.href))
|
||||||
.forEach((a, i) => {
|
.forEach((a, i) => {
|
||||||
if (isMastodonLinkMaybe(a.href)) {
|
|
||||||
unfurlMastodonLink(currentInstance, a.href).then(
|
unfurlMastodonLink(currentInstance, a.href).then(
|
||||||
(result) => {
|
(result) => {
|
||||||
if (!result) return;
|
if (!result) return;
|
||||||
|
@ -960,7 +961,6 @@ function Status({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
@ -1946,6 +1946,7 @@ const QuoteStatuses = memo(({ id, instance, level = 0 }) => {
|
||||||
return quotes.map((q) => {
|
return quotes.map((q) => {
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
|
key={q.instance + q.id}
|
||||||
to={`${q.instance ? `/${q.instance}` : ''}/s/${q.id}`}
|
to={`${q.instance ? `/${q.instance}` : ''}/s/${q.id}`}
|
||||||
class="status-card-link"
|
class="status-card-link"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Reference in a new issue