mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 10:45:41 +03:00
Enable unfurling when fetching reply hints
This commit is contained in:
parent
f7024f7723
commit
046d3d323a
1 changed files with 0 additions and 2 deletions
|
@ -227,7 +227,6 @@ export function groupContext(items, instance) {
|
||||||
const replyToStatus = await fetchStatus(inReplyToId, masto);
|
const replyToStatus = await fetchStatus(inReplyToId, masto);
|
||||||
saveStatus(replyToStatus, instance, {
|
saveStatus(replyToStatus, instance, {
|
||||||
skipThreading: true,
|
skipThreading: true,
|
||||||
skipUnfurling: true,
|
|
||||||
});
|
});
|
||||||
states.statusReply[sKey] = {
|
states.statusReply[sKey] = {
|
||||||
id: replyToStatus.id,
|
id: replyToStatus.id,
|
||||||
|
@ -253,7 +252,6 @@ export function groupContext(items, instance) {
|
||||||
for (const replyToStatus of replyToStatuses) {
|
for (const replyToStatus of replyToStatuses) {
|
||||||
saveStatus(replyToStatus, instance, {
|
saveStatus(replyToStatus, instance, {
|
||||||
skipThreading: true,
|
skipThreading: true,
|
||||||
skipUnfurling: true,
|
|
||||||
});
|
});
|
||||||
const sKey = inReplyToIds.find(
|
const sKey = inReplyToIds.find(
|
||||||
({ inReplyToId }) => inReplyToId === replyToStatus.id,
|
({ inReplyToId }) => inReplyToId === replyToStatus.id,
|
||||||
|
|
Loading…
Reference in a new issue