Skip to content

Commit bdff5f3

Browse files
author
Your Name
committed
feat: Update film endpoint from 'recently added' to 'popular'.
1 parent 619f6cf commit bdff5f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/domain/services/streaming_service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async fn fetch_fresh_streaming() -> Result<Value, String> {
3737
.build()
3838
.map_err(|e| e.to_string())?;
3939

40-
let url = format!("{}/films-ajoutes-recemment/1", BASE_URL);
40+
let url = format!("{}/films-populaires/1", BASE_URL);
4141
let response = client.get(url).send().await.map_err(|e| e.to_string())?;
4242

4343
if !response.status().is_success() {

0 commit comments

Comments
 (0)