Skip to content

Commit

Permalink
Fix function
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim committed Apr 17, 2024
1 parent 80fc3b8 commit 0a68437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/symbolicator-proguard/src/symbolication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ fn build_source_file_name(frame: &JvmFrame) -> String {
source_file_name.push_str(abs_path_before_dot);
}
None => {
let module_before_dollar = module.rsplit_once('$').map(|p| p.0).unwrap_or(module);
let module_before_dollar = module.split_once('$').map(|p| p.0).unwrap_or(module);
source_file_name.push_str(&module_before_dollar.replace('.', "/"));
}
};
Expand Down

0 comments on commit 0a68437

Please sign in to comment.