Skip to content

Commit

Permalink
Fix a broken build (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
chosungmann committed Nov 15, 2023
1 parent be455c7 commit 18de9fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ debug-logs = []

[dependencies]
breakpad-handler = { version = "0.2.0", path = "./breakpad-handler" }
sentry-core = { version = ">=0.29", features = ["client"] }
sentry-core = { version = ">=0.31.7", features = ["client"] }
serde_json = "1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion src/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub(crate) fn assemble_envelope(md: CrashMetadata, minidump_path: &Path) -> prot
event_id: minidump_path
.file_stem()
.and_then(|fname| fname.to_str().and_then(|fs| fs.parse::<types::Uuid>().ok()))
.unwrap_or_else(types::Uuid::new_v4),
.unwrap_or_else(types::random_uuid),
level: proto::Level::Fatal,
timestamp,
..Default::default()
Expand Down

0 comments on commit 18de9fb

Please sign in to comment.