From 1b9353dcccf14d97a79db944e9be75d56be482fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kalle=20Kiet=C3=A4v=C3=A4inen?= <1026741+kietavainen@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:13:23 +0200 Subject: [PATCH] Fix suppressing news nag after reading the news (#3731) --- src/commands/CmdNews.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index 3f667fb81..9f1c60df0 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -642,7 +642,7 @@ bool CmdNews::should_nag() { Version current_version = Version::Current(); if (news_version == current_version) { - return true; + return false; } // Check if there are actually any interesting news items to show.