mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-15 00:14:45 +02:00
fix(furaffinity): type error (#4554)
fixes array_filter(): Argument #1 ($array) must be of type array, null given fix #4553
This commit is contained in:
parent
d36b335725
commit
8f21a030a8
1 changed files with 3 additions and 1 deletions
|
@ -920,7 +920,9 @@ class FurAffinityBridge extends BridgeAbstract
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$item = [];
|
$item = [
|
||||||
|
'categories' => [],
|
||||||
|
];
|
||||||
|
|
||||||
$submissionURL = $figure->find('b u a', 0)->href;
|
$submissionURL = $figure->find('b u a', 0)->href;
|
||||||
$imgURL = $figure->find('b u a img', 0)->src;
|
$imgURL = $figure->find('b u a img', 0)->src;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue