Fix GUI bug with ommitted argument
Build Debug APK / build (push) Successful in 9m31s

This commit is contained in:
Greg Shuflin
2026-06-03 02:37:39 -07:00
parent a14cb53923
commit f593ca3809
+1 -1
View File
@@ -214,7 +214,7 @@ pub fn setup_podcast_callbacks(
std::thread::spawn(move || {
match podcast_id_string.parse::<i64>() {
Ok(id) => {
match synchronicity::agents::podcast::get_podcast_episodes(id) {
match synchronicity::agents::podcast::get_podcast_episodes(id, 100) {
Ok(json_response) => {
match serde_json::from_str::<synchronicity::agents::podcast::PodcastEpisodesResponse>(&json_response) {
Ok(response) => {