fix: reworked retry system
This commit is contained in:
parent
d128ca4214
commit
a2bbc850a7
17 changed files with 273 additions and 121 deletions
|
|
@ -269,6 +269,7 @@ fn map_artist_page(
|
|||
}
|
||||
}
|
||||
|
||||
mapper.check_unknown()?;
|
||||
let mut mapped = mapper.group_items();
|
||||
|
||||
static WIKIPEDIA_REGEX: Lazy<Regex> =
|
||||
|
|
@ -355,6 +356,7 @@ impl MapResponse<Vec<AlbumItem>> for response::MusicArtistAlbums {
|
|||
mapper.map_response(grid.grid_renderer.items);
|
||||
}
|
||||
|
||||
mapper.check_unknown()?;
|
||||
let mapped = mapper.group_items();
|
||||
|
||||
Ok(MapResult {
|
||||
|
|
|
|||
Reference in a new issue