diff --git a/proxmox-apt/src/repositories/mod.rs b/proxmox-apt/src/repositories/mod.rs index d8848b84..6588b908 100644 --- a/proxmox-apt/src/repositories/mod.rs +++ b/proxmox-apt/src/repositories/mod.rs @@ -106,7 +106,12 @@ pub fn standard_repositories( continue; } - if repo.is_referenced_repository(entry.handle, product, &suite.to_string()) { + if repo.is_referenced_repository(entry.handle, product, &suite.to_string()) + || repo.is_referenced_repository( + entry.handle, + product, + &suite.next().unwrap().to_string(), + ) { entry.status = Some(repo.enabled); } }