diff --git a/Classes/Controller/LatestController.php b/Classes/Controller/LatestController.php
index bca9fa889f123eee4517e583c31963d27e6dcb4a..393c956362a98045addca3de04b42f4d7db69029 100644
--- a/Classes/Controller/LatestController.php
+++ b/Classes/Controller/LatestController.php
@@ -103,18 +103,6 @@ class LatestController extends AbstractController {
 			}
 		}
 
-		// Redo this function, until $newsMetaData gets the $limit. Needed because of languagevisibility.
-		if (count($newsMetaData) < $limit) {
-			$offset += $limit;
-			$maxCount = $this->newsRepository->getCountOfLastUpdatedOrHighlightedNewsByCategories(
-				FALSE, $categoryUids, TRUE, $sortBy, $tagUids, $startTime, $endTime
-			);
-			if ($offset < $maxCount) {
-				$this->indexAction($newsMetaData, $offset);
-				return;
-			}
-		}
-
 		$this->view->assign('newsMetaData', $newsMetaData);
 	}