Changement du mécanisme d'attention sur les channels Radio Paradise.

This commit is contained in:
2025-11-29 14:19:16 +01:00
parent cf3f0afde4
commit 0a03f72467
44 changed files with 564 additions and 231 deletions

View File

@@ -269,7 +269,9 @@ fn test_get_pk_by_origin_url() {
assert_eq!(found_pk, Some(pk.to_string()));
// Rechercher une URL qui n'existe pas
let not_found = db.get_pk_by_origin_url("https://example.com/notfound.jpg").unwrap();
let not_found = db
.get_pk_by_origin_url("https://example.com/notfound.jpg")
.unwrap();
assert_eq!(not_found, None);
}