kitab

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | LICENSE

commit 343e902b10679c37b92e59c20fa32a87f78df08d
parent 75f2998511eab613e5c0c8e24b31cbdc9636a201
Author: lash <dev@holbrook.no>
Date:   Sat, 25 Jun 2022 18:52:05 +0000

Use replace for double quote removal

Diffstat:
Msrc/meta.rs | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/meta.rs b/src/meta.rs @@ -230,6 +230,10 @@ impl MetaData { metadata } + + pub fn to_xattr(&self, filepath: &Path) -> Result<(), std::io::Error> { + Ok(()) + } } #[cfg(test)]