Log redirect name instead of article on error
Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
parent
580b60bdd4
commit
2dc0b1bc34
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ impl Page {
|
|||
pub fn redirects(&self) -> impl Iterator<Item = anyhow::Result<Title>> + '_ {
|
||||
self.redirects.iter().map(|r| {
|
||||
Title::from_title(&r.name, &self.in_language.identifier)
|
||||
.with_context(|| format!("bad redirect {:?}", self.name))
|
||||
.with_context(|| format!("bad redirect {:?}", &r.name))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue