Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 4d5a18e

Browse files
authored
database.rs: blob objects string update
1 parent 18c44cf commit 4d5a18e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-tauri/src/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,6 @@ pub fn convert(value: Value) -> String {
114114
Value::Integer(v) => v.to_string(),
115115
Value::Real(v) => v.to_string(),
116116
Value::Text(v) => v.to_string(),
117-
Value::Blob(_) => String::from("Blob"),
117+
Value::Blob(_) => String::from("<Blob Object>"),
118118
}
119119
}

0 commit comments

Comments
 (0)