increase bounce info length

This commit is contained in:
Son 2021-12-28 10:51:43 +01:00
parent fc42db43ca
commit bd614278df
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ def all_bounce_report() -> str:
.first()
)
# most_recent.info can be very verbose
res += f"Most recent cause: \n{most_recent.info[:200] if most_recent.info else 'N/A'}"
res += f"Most recent cause: \n{most_recent.info[:1000] if most_recent.info else 'N/A'}"
res += "\n----\n"
return res