mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-10 19:10:57 +00:00
melib/error: do not discard old summary in set_summary
This commit is contained in:
parent
75f9256a50
commit
8bfdce6658
@ -92,7 +92,11 @@ impl MeliError {
|
|||||||
where
|
where
|
||||||
M: Into<Cow<'static, str>>,
|
M: Into<Cow<'static, str>>,
|
||||||
{
|
{
|
||||||
|
if let Some(old_summary) = self.summary.take() {
|
||||||
|
self.summary = Some(format!("{}. {}", old_summary, summary.into()).into());
|
||||||
|
} else {
|
||||||
self.summary = Some(summary.into());
|
self.summary = Some(summary.into());
|
||||||
|
}
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,12 +122,6 @@ impl fmt::Display for MeliError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<String> for MeliError {
|
|
||||||
fn into(self) -> String {
|
|
||||||
self.details.into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Error for MeliError {
|
impl Error for MeliError {
|
||||||
fn source(&self) -> Option<&(dyn Error + 'static)> {
|
fn source(&self) -> Option<&(dyn Error + 'static)> {
|
||||||
self.source.as_ref().map(|s| &(*(*s)) as _)
|
self.source.as_ref().map(|s| &(*(*s)) as _)
|
||||||
|
Loading…
Reference in New Issue
Block a user