mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
lint
This commit is contained in:
parent
d31ef85446
commit
01089e13b0
@ -566,14 +566,14 @@ class BlueskyBridge extends BridgeAbstract
|
|||||||
}
|
}
|
||||||
$title .= ', replying to ' . $replyAuthor;
|
$title .= ', replying to ' . $replyAuthor;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
isset($post['post']['embed']) &&
|
isset($post['post']['embed']) &&
|
||||||
isset($post['post']['embed']['record']) &&
|
isset($post['post']['embed']['record']) &&
|
||||||
//if not starter pack, feed or list
|
//if not starter pack, feed or list
|
||||||
($post['post']['embed']['record']['$type'] ?? '') !== "app.bsky.feed.defs#generatorView" &&
|
($post['post']['embed']['record']['$type'] ?? '') !== 'app.bsky.feed.defs#generatorView' &&
|
||||||
($post['post']['embed']['record']['$type'] ?? '') !== "app.bsky.graph.defs#listView" &&
|
($post['post']['embed']['record']['$type'] ?? '') !== 'app.bsky.graph.defs#listView' &&
|
||||||
($post['post']['embed']['record']['$type'] ?? '') !== "app.bsky.graph.defs#starterPackViewBasic"
|
($post['post']['embed']['record']['$type'] ?? '') !== 'app.bsky.graph.defs#starterPackViewBasic'
|
||||||
) {
|
) {
|
||||||
if (isset($post['post']['embed']['record']['blocked'])) {
|
if (isset($post['post']['embed']['record']['blocked'])) {
|
||||||
$quotedAuthor = 'blocked user';
|
$quotedAuthor = 'blocked user';
|
||||||
@ -616,12 +616,12 @@ class BlueskyBridge extends BridgeAbstract
|
|||||||
//Embed for generated feeds and lists
|
//Embed for generated feeds and lists
|
||||||
private function getListFeedDescription(array $record): string
|
private function getListFeedDescription(array $record): string
|
||||||
{
|
{
|
||||||
$feedViewAvatar = isset($record['avatar']) ? "<img src=\"" . preg_replace('/\/img\/avatar\//', '/img/avatar_thumbnail/', $record['avatar']) . "\">" : "";
|
$feedViewAvatar = isset($record['avatar']) ? '<img src="' . preg_replace('/\/img\/avatar\//', '/img/avatar_thumbnail/', $record['avatar']) . '">' : '';
|
||||||
$feedViewName = e($record['displayName'] ?? $record['name']);
|
$feedViewName = e($record['displayName'] ?? $record['name']);
|
||||||
$feedViewDescription = e($record['description'] ?? '');
|
$feedViewDescription = e($record['description'] ?? '');
|
||||||
$authorDisplayName = e($record['creator']['displayName']);
|
$authorDisplayName = e($record['creator']['displayName']);
|
||||||
$authorHandle = e($record['creator']['handle']);
|
$authorHandle = e($record['creator']['handle']);
|
||||||
$likeCount = isset($record['likeCount']) ? "<br>Liked by " . e($record['likeCount']) . " users" : '';
|
$likeCount = isset($record['likeCount']) ? '<br>Liked by ' . e($record['likeCount']) . ' users' : '';
|
||||||
preg_match('/\/([^\/]+)$/', $record['uri'], $matches);
|
preg_match('/\/([^\/]+)$/', $record['uri'], $matches);
|
||||||
if (($record['purpose'] ?? '') === 'app.bsky.graph.defs#modlist') {
|
if (($record['purpose'] ?? '') === 'app.bsky.graph.defs#modlist') {
|
||||||
$typeURL = '/lists/';
|
$typeURL = '/lists/';
|
||||||
|
Loading…
Reference in New Issue
Block a user