Skip to content

Commit

Permalink
Fix #314
Browse files Browse the repository at this point in the history
  • Loading branch information
ReagentX committed Aug 3, 2024
1 parent d80e2af commit 5847bd3
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 153 deletions.
4 changes: 2 additions & 2 deletions imessage-exporter/src/app/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,10 +339,10 @@ impl Config {
// Create exporter, pass it data we care about, then kick it off
match export_type {
ExportType::Html => {
HTML::new(self).iter_messages()?;
HTML::new(self)?.iter_messages()?;
}
ExportType::Txt => {
TXT::new(self).iter_messages()?;
TXT::new(self)?.iter_messages()?;
}
}
}
Expand Down
Loading

0 comments on commit 5847bd3

Please # to comment.