Skip to content

Commit

Permalink
Fixed clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Feb 19, 2024
1 parent b90deb7 commit bb7f5ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/podcast_episode_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ impl PodcastEpisodeService {
log::info!(
"Error parsing podcast {:?} with cause {:?}",
returned_data_from_podcast_insert.content,e);
return Err(CustomError::BadRequest(format!("Error parsing podcast {:?}", e)));
Err(CustomError::BadRequest(format!("Error parsing podcast {:?}", e)))
}
}
}
Expand Down

0 comments on commit bb7f5ff

Please sign in to comment.