diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-01-16 09:40:55 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-01-16 09:40:55 +0100 |
commit | 05ea7beb30c5e8fd64a6b42ca2a0e836ff8e89b5 (patch) | |
tree | 7611d502e48577f8cc82cb75e7a1e0b883b4ea40 | |
parent | 64f693379da844db3a7b90652c283884a95550d0 (diff) |
Fix track user response (Yes, No) not working
-rwxr-xr-x | automedia | bin | 116632 -> 116608 bytes | |||
-rw-r--r-- | src/rss.c | 2 |
2 files changed, 1 insertions, 1 deletions
Binary files differ @@ -281,7 +281,7 @@ static int get_rss_url_from_episode_info(const char *episode_name, EpisodeInfo * fprintf(stderr, "Failed to read response from stdin\n"); return -1; } - char *response_str = strip(response); + char *response_str = strip(sresp); int response_len = strlen(response_str); if(response_len > 0 && (response_str[0] == 'n' || response_str[0] == 'N')) { |