4
0
Эх сурвалжийг харах

Fix regression labels (#7150)

Regression from https://github.com/FreshRSS/FreshRSS/pull/7131
Alexandre Alapetite 1 жил өмнө
parent
commit
bbd81b3e7e

+ 5 - 1
app/Models/Context.php

@@ -471,7 +471,11 @@ final class FreshRSS_Context {
 					}
 				}
 				if ($tag === null) {
-					throw new FreshRSS_Context_Exception('Invalid tag: ' . $id);
+					$tagDAO = FreshRSS_Factory::createTagDao();
+					$tag = $tagDAO->searchById($id);
+					if ($tag === null) {
+						throw new FreshRSS_Context_Exception('Invalid tag: ' . $id);
+					}
 				}
 				self::$name = $tag->name();
 				self::$get_unread = $tag->nbUnread();