From b04e870cd85be36be4c40921c5129097127e5163 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 5 Apr 2023 21:09:42 -0400 Subject: [PATCH] =?UTF-8?q?I=20foiund=20the=20place=20where=20I=20was=20bl?= =?UTF-8?q?anking=20my=20own=20note=20=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index de4792a..beb6b20 100644 --- a/Program.cs +++ b/Program.cs @@ -9,7 +9,7 @@ namespace ttrss_co_client static async Task Main(string[] args) { var conf = Configure(); - Console.WriteLine($"{DateTime.Now.ToLongDateString()}"); + Console.WriteLine($"{DateTime.Now.ToLongTimeString()}"); var ttrssClient = new ttrss.ApiClient(conf.BaseURI); await ttrssClient.Login(conf.Username, conf.Password); @@ -108,7 +108,6 @@ namespace ttrss_co_client noteString += $"[{DateTime.Now.ToLongTimeString()}] - feed configured but action not recognized"; break; } - await ttrssClient.UpdateArticleNote(noteString, hl.id); } } }