Skip to content

Commit

Permalink
fix(application): fixes nullability for owner
Browse files Browse the repository at this point in the history
see #36
  • Loading branch information
Björn Urban committed May 12, 2024
1 parent 21eb84f commit cf02f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Document {
archive_serial_number: Option<String>,
original_file_name: String,
archived_file_name: String,
owner: u32,
owner: Option<u32>,
notes: Vec<String>,
tags: Vec<u32>,
user_can_change: bool,
Expand Down

0 comments on commit cf02f09

Please sign in to comment.