mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
docs: add note about expensive operation (#3579)
This commit is contained in:
parent
f8fd05f08f
commit
8b6eecea25
1 changed files with 4 additions and 1 deletions
|
@ -84,7 +84,10 @@ class VkBridge extends BridgeAbstract
|
|||
foreach ($html->find('div.replies') as $comment_block) {
|
||||
$comment_block->outertext = '';
|
||||
}
|
||||
$html->load($html->save());
|
||||
|
||||
// expensive operation
|
||||
$save = $html->save();
|
||||
$html->load($save);
|
||||
|
||||
$pinned_post_item = null;
|
||||
$last_post_id = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue