fix false user files

This commit is contained in:
Robin Appelman 2025-05-27 22:33:00 +02:00
commit bee8062f3a
2 changed files with 2 additions and 2 deletions

View file

@ -222,7 +222,7 @@ pub struct FullLogLine {
pub time: OffsetDateTime,
#[serde(rename = "remoteAddr")]
pub remote_address: String,
pub user: String,
pub user: LogUser,
pub app: TinyAsciiStr<32>,
pub method: TinyAsciiStr<16>,
pub url: String,

View file

@ -44,7 +44,7 @@ impl StatefulWidget for SingleLog<'_> {
line.user_agent,
line.request_id,
line.remote_address,
line.user,
line.user.as_str(),
format_time(line.time),
line.version,
))