mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-04 02:24:11 +02:00
handle non-string users
This commit is contained in:
parent
7e166af604
commit
de82dcf793
3 changed files with 43 additions and 5 deletions
|
|
@ -57,7 +57,12 @@ impl StatefulWidget for GroupedLogs<'_> {
|
|||
.wrap(Wrap::default()),
|
||||
GroupedLogGrouping::Request => Paragraph::new(format!(
|
||||
"{} {}\n\n {} from {} by {} - Nextcloud {}",
|
||||
line.method, line.url, line.request_id, line.remote, line.user, line.version,
|
||||
line.method,
|
||||
line.url,
|
||||
line.request_id,
|
||||
line.remote,
|
||||
line.user.as_str(),
|
||||
line.version,
|
||||
))
|
||||
.wrap(Wrap::default()),
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue