Skip to content

Commit 897731a

Browse files
committed
no js
1 parent b5260e9 commit 897731a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct Static;
2929
fn get_embedded_file(file_path: &str) -> String {
3030
match Static::get(file_path) {
3131
Some(file) => match std::str::from_utf8(&file.data) {
32-
Ok(js) => js.to_string(),
32+
Ok(content) => content.to_string(),
3333
Err(e) => {
3434
eprintln!("Failed to read embedded file: {e}");
3535
String::new()

0 commit comments

Comments
 (0)