Implement almost all previous features

This commit is contained in:
Lennart
2025-06-08 19:38:33 +02:00
parent 95889e3df1
commit 00eb43f048
41 changed files with 906 additions and 916 deletions

View File

@@ -39,7 +39,7 @@ impl AddressObject {
let mut hasher = Sha256::new();
hasher.update(&self.id);
hasher.update(self.get_vcf());
format!("{:x}", hasher.finalize())
format!("\"{:x}\"", hasher.finalize())
}
pub fn get_vcf(&self) -> &str {

View File

@@ -142,7 +142,7 @@ impl CalendarObject {
let mut hasher = Sha256::new();
hasher.update(&self.id);
hasher.update(self.get_ics());
format!("{:x}", hasher.finalize())
format!("\"{:x}\"", hasher.finalize())
}
pub fn get_ics(&self) -> &str {