Skip to content

Commit

Permalink
- fix: enable local pdf parsing (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol authored Sep 10, 2024
1 parent 3e0bf84 commit 53ba1d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shinkai-bin/shinkai-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shinkai_node"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
authors.workspace = true
# this causes `cargo run` in the workspace root to run this package
Expand Down
2 changes: 1 addition & 1 deletion shinkai-bin/shinkai-node/src/db/db_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ impl ShinkaiDB {
let preference: bool = serde_json::from_slice(&value)?;
Ok(preference)
}
None => Ok(false), // Note(change): Default to true if the setting does not exist
None => Ok(true),
}
}

Expand Down

0 comments on commit 53ba1d3

Please sign in to comment.