mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-03 10:04:12 +02:00
fix false user files
This commit is contained in:
parent
eec9d1aa00
commit
bee8062f3a
2 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue