FIX: $return -> $status in refresh_shows

This commit is contained in:
Frank de Lange 2022-03-02 13:04:23 +00:00
parent d3bf779a43
commit 6ff85df5ab
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[metadata] [metadata]
name = spodcast name = spodcast
version = 0.4.3 version = 0.4.4
description = A caching Spotify podcast to RSS proxy. description = A caching Spotify podcast to RSS proxy.
long_description = file:README.md long_description = file:README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown

View file

@ -419,7 +419,7 @@ function refresh_shows($feeds) {
} }
$result = array_merge($result, $output); $result = array_merge($result, $output);
} }
return [$return, $result]; return [$status, $result];
} }
# terminating functions # terminating functions