Fetch posts quoted in replies
Previously only quotes in top-level posts were processed.
This commit is contained in:
parent
762b3e053e
commit
879e284403
1 changed files with 3 additions and 3 deletions
|
@ -276,9 +276,9 @@ pub async fn import_post(
|
||||||
if let Some(ref object_id) = object.in_reply_to {
|
if let Some(ref object_id) = object.in_reply_to {
|
||||||
// Fetch parent object on next iteration
|
// Fetch parent object on next iteration
|
||||||
queue.push(object_id.to_owned());
|
queue.push(object_id.to_owned());
|
||||||
} else if let Some(ref object_id) = object.quote_url {
|
};
|
||||||
// Fetch quoted object on next iteration
|
if let Some(ref object_id) = object.quote_url {
|
||||||
// (only if object doesn't have a parent).
|
// Fetch quoted object after fetching current thread
|
||||||
queue.insert(0, object_id.to_owned());
|
queue.insert(0, object_id.to_owned());
|
||||||
};
|
};
|
||||||
maybe_object = None;
|
maybe_object = None;
|
||||||
|
|
Loading…
Reference in a new issue