+
EOD;
diff --git a/bridges/UnraidCommunityApplicationsBridge.php b/bridges/UnraidCommunityApplicationsBridge.php
index 5acd5049..441edb65 100644
--- a/bridges/UnraidCommunityApplicationsBridge.php
+++ b/bridges/UnraidCommunityApplicationsBridge.php
@@ -31,50 +31,52 @@ class UnraidCommunityApplicationsBridge extends BridgeAbstract
{
$this->fetchApps();
$this->sortApps();
-
- Debug::log('Building RSS feed');
foreach ($this->apps as $app) {
- if (!array_key_exists('Language', $app)) {
- $item = [];
- $item['title'] = $app['Name'];
- $item['timestamp'] = $app['FirstSeen'];
- $item['author'] = explode('\'', $app['Repo'])[0];
- $item['categories'] = explode(' ', $app['Category']);
- $item['content'] = '';
+ if (array_key_exists('Language', $app)) {
+ continue;
+ }
+ $item = [];
+ $item['title'] = $app['Name'];
+ $item['timestamp'] = $app['FirstSeen'];
+ $item['author'] = explode('\'', $app['Repo'])[0];
+ $item['content'] = '';
- if (array_key_exists('Icon', $app)) {
- $item['content'] .= '
';
- }
+ if (isset($app['CategoryList'])) {
+ $item['categories'] = $app['CategoryList'];
+ }
- if (array_key_exists('Overview', $app)) {
- $item['content'] .= ''
- . $app['Overview']
- . '
';
- }
+ if (array_key_exists('Icon', $app)) {
+ $item['content'] .= '
';
+ }
- if (array_key_exists('Project', $app)) {
- $item['uri'] = $app['Project'];
- }
+ if (array_key_exists('Overview', $app)) {
+ $item['content'] .= ''
+ . $app['Overview']
+ . '
';
+ }
- if (array_key_exists('Registry', $app)) {
- $item['content'] .= '
Docker Hub';
- }
+ if (array_key_exists('Project', $app)) {
+ $item['uri'] = $app['Project'];
+ }
- if (array_key_exists('Support', $app)) {
- $item['content'] .= '
Support';
- }
+ if (array_key_exists('Registry', $app)) {
+ $item['content'] .= '
Docker Hub';
+ }
- $this->items[] = $item;
+ if (array_key_exists('Support', $app)) {
+ $item['content'] .= '
Support';
+ }
- if (count($this->items) >= 15) {
- break;
- }
+ $this->items[] = $item;
+
+ if (count($this->items) >= 150) {
+ break;
}
}
}
diff --git a/bridges/ZDNetBridge.php b/bridges/ZDNetBridge.php
index 09bde8e3..0bebeff8 100644
--- a/bridges/ZDNetBridge.php
+++ b/bridges/ZDNetBridge.php
@@ -180,10 +180,16 @@ class ZDNetBridge extends FeedExpander
$article = getSimpleHTMLDOMCached($item['uri']);
if (!$article) {
- returnServerError('Could not request ZDNet: ' . $url);
+ Logger::info('Unable to parse the dom from ' . $item['uri']);
+ return $item;
}
- $contents = $article->find('article', 0)->innertext;
+ $articleTag = $article->find('article', 0) ?? $article->find('.c-articleContent', 0);
+ if (!$articleTag) {
+ Logger::info('Unable to parse tag in ' . $item['uri']);
+ return $item;
+ }
+ $contents = $articleTag->innertext;
foreach (
[
'