snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 5ec55544e4d83503776f517d62262ae176ca15c6
parent e030fe6c5054c0a9b76a55adc80bb81d7a73fcc3
Author: grunfink <grunfink@comam.es>
Date:   Thu, 29 May 2025 22:52:20 +0200

New command-line option 'poll_hashtag_rss'.

Diffstat:
Mmain.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/main.c b/main.c @@ -143,6 +143,11 @@ int main(int argc, char *argv[]) return 0; } + if (strcmp(cmd, "poll_hashtag_rss") == 0) { /** **/ + rss_poll_hashtags(); + return 0; + } + if (strcmp(cmd, "state") == 0) { /** **/ xs *shm_name = NULL; srv_state *p_state = srv_state_op(&shm_name, 1);