mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
[PatreonBridge] resolve null coalescing issue (#3664)
* extend post presentation * applied phpcbf note: phpcs does not like long null coalescing chains * resolved phpcs * resolved github comment https://github.com/RSS-Bridge/rss-bridge/pull/3617/#issuecomment-1699568400 * . * lint SteamAppNewsBridge
This commit is contained in:
parent
a9cf1512e7
commit
3e1e96e477
@ -132,8 +132,9 @@ class PatreonBridge extends BridgeAbstract
|
||||
$audio = $this->findInclude($posts, 'media', $id)->attributes ?? null;
|
||||
}
|
||||
}
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? $post->attributes->thumbnail->url;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url;
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->thumbnail->url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->url;
|
||||
$audio_filename = $audio->file_name ?? $item['title'];
|
||||
$download_url = $audio->download_url ?? $item['uri'];
|
||||
@ -146,15 +147,17 @@ class PatreonBridge extends BridgeAbstract
|
||||
break;
|
||||
|
||||
case 'video_embed':
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? $post->attributes->thumbnail->url;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url;
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->thumbnail->url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->url;
|
||||
$item['content'] .= "<p><a href=\"{$item['uri']}\">🎬 {$item['title']}<br><img src=\"{$thumbnail}\"></a></p>";
|
||||
break;
|
||||
|
||||
case 'video_external_file':
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? $post->attributes->thumbnail->url;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url;
|
||||
$thumbnail = $post->attributes->thumbnail->large ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->thumbnail->url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->thumb_url ?? null;
|
||||
$thumbnail = $thumbnail ?? $post->attributes->image->url;
|
||||
$item['content'] .= "<p><a href=\"{$item['uri']}\">🎬 {$item['title']}<br><img src=\"{$thumbnail}\"></a></p>";
|
||||
break;
|
||||
|
@ -41,8 +41,7 @@ class SteamAppNewsBridge extends BridgeAbstract
|
||||
$apiTarget = 'https://api.steampowered.com/ISteamNews/GetNewsForApp/v2/';
|
||||
// Example with params: https://api.steampowered.com/ISteamNews/GetNewsForApp/v2/?appid=730&maxlength=0&count=20
|
||||
// More info at dev docs https://partner.steamgames.com/doc/webapi/ISteamNews
|
||||
$url =
|
||||
$apiTarget
|
||||
$url = $apiTarget
|
||||
. '?appid=' . $this->getInput('appid')
|
||||
. '&maxlength=' . $this->getInput('maxlength')
|
||||
. '&count=' . $this->getInput('count')
|
||||
|
Loading…
Reference in New Issue
Block a user