Remove references to, and integrations with, 'tt-rss.org'.

This commit is contained in:
supahgreg
2025-10-03 21:00:43 +00:00
parent c67b943aa8
commit 5e99eb41ec
18 changed files with 40 additions and 70 deletions

View File

@@ -324,8 +324,10 @@ class RPC extends Handler_Protected {
$git_timestamp = $version["timestamp"] ?? false;
$git_commit = $version["commit"] ?? false;
// TODO: Get this working again. https://tt-rss.org/version.json won't exist after 2025-11-01 (probably).
if (Config::get(Config::CHECK_FOR_UPDATES) && $_SESSION["access_level"] >= UserHelper::ACCESS_LEVEL_ADMIN && $git_timestamp) {
$content = @UrlHelper::fetch(["url" => "https://tt-rss.org/version.json"]);
// $content = @UrlHelper::fetch(["url" => "https://tt-rss.org/version.json"]);
$content = false;
if ($content) {
$content = json_decode($content, true);