mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[Itaku] extend the number of images shown in a post (#3780)
* minor fixes - extended itaku post if post does not have all images * phpcbf * . * resolve deprecated explode param yay null coalesces
This commit is contained in:
parent
4722201281
commit
a6a4502209
@ -201,7 +201,7 @@ class ItakuBridge extends BridgeAbstract
|
|||||||
'rating_e' => $this->getInput('rating_e')
|
'rating_e' => $this->getInput('rating_e')
|
||||||
];
|
];
|
||||||
|
|
||||||
$tag_arr = explode(' ', $this->getInput('tags'));
|
$tag_arr = explode(' ', $this->getInput('tags') ?? '');
|
||||||
foreach ($tag_arr as $str) {
|
foreach ($tag_arr as $str) {
|
||||||
switch ($str[0]) {
|
switch ($str[0]) {
|
||||||
case '-':
|
case '-':
|
||||||
@ -446,6 +446,9 @@ class ItakuBridge extends BridgeAbstract
|
|||||||
|
|
||||||
private function getPost($id, array $metadata = null)
|
private function getPost($id, array $metadata = null)
|
||||||
{
|
{
|
||||||
|
if (isset($metadata) && sizeof($metadata['gallery_images']) < $metadata['num_images']) {
|
||||||
|
$metadata = null; //force re-fetch of metadata
|
||||||
|
}
|
||||||
$uri = self::URI . '/posts/' . $id;
|
$uri = self::URI . '/posts/' . $id;
|
||||||
$url = self::URI . '/api/posts/' . $id . '/?format=json';
|
$url = self::URI . '/api/posts/' . $id . '/?format=json';
|
||||||
$data = $metadata ?? $this->getData($url, true, true)
|
$data = $metadata ?? $this->getData($url, true, true)
|
||||||
|
Loading…
Reference in New Issue
Block a user