We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf2c03 commit 9e08507Copy full SHA for 9e08507
src/wasm/src/meta.rs
@@ -108,17 +108,13 @@ pub fn get_navigation_data_install_status(task: Rc<RefCell<Task>>) {
108
InstallStatus::None
109
};
110
111
- println!("opening json");
112
-
113
// Open JSON
114
let json_path = match status {
115
InstallStatus::Manual => Some(PathBuf::from(consts::NAVIGATION_DATA_DOWNLOADED_LOCATION).join("cycle.json")),
116
InstallStatus::Bundled => Some(PathBuf::from(consts::NAVIGATION_DATA_DEFAULT_LOCATION).join("cycle.json")),
117
InstallStatus::None => None,
118
119
120
- println!("json_path: {:#?}", json_path);
121
122
let installed_cycle_info = match json_path {
123
Some(json_path) => {
124
let json_file = match std::fs::File::open(json_path) {
0 commit comments