Regression: feed block titles are empty when migrated from D7
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #2927014. --> Reported by: [matslats](https://www.drupal.org/user/140053) >>> <p>Ideally the aggregator's blocks' titles would be inherited from the title of the feed.<br> This matters less when creating a block manually because the author can just write a title.<br> However migrated blocks have no title at all.</p> <p>This would probably do it:<br> On Drupal\aggregator\Plugin\Block\AggregatorFeedBlock</p> <pre>&nbsp; public function label() {<br>&nbsp;&nbsp;&nbsp; if ($feed = $this-&gt;feedStorage-&gt;load($this-&gt;configuration['feed'])) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return $feed-&gt;label();<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; return parent::label();<br>&nbsp; }</pre>
issue