Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Dec 6, 2024
1 parent c67239b commit ecd9bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pub fn FileReader(
set_is_folded.set(true);
}
Err(e) => {
set_error_message.set(Some(format!("Failed to read from S3: {}", e)));
set_error_message.set(Some(format!("Failed to read from HTTP: {}", e)));
}
}
});
Expand Down

0 comments on commit ecd9bf1

Please sign in to comment.