Selaa lähdekoodia

Fix regression labels (#7150)

Regression from https://github.com/FreshRSS/FreshRSS/pull/7131
Alexandre Alapetite 1 vuosi sitten
vanhempi
commit
bbd81b3e7e
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      app/Models/Context.php

+ 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();