-
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
CodeId::new() currently calls make_ascii_lowercase():
Lines 297 to 302 in 9fb71ae
| /// Constructs a `CodeId` from its string representation. | |
| pub fn new(mut string: String) -> Self { | |
| string.retain(|c| c.is_ascii_hexdigit()); | |
| string.make_ascii_lowercase(); | |
| CodeId { inner: string } | |
| } |
However, the casing makes a difference when looking up exe/dll files on case-sensitive symbol servers. See getsentry/symbolic#436 for background.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels