Skip to content

Commit

Permalink
Fix fail on contact sync for contacts without a UUID (#152)
Browse files Browse the repository at this point in the history
The actual fix was done in whisperfish/presage#52
  • Loading branch information
boxdot authored May 13, 2022
1 parent 51d34ad commit 138f185
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
### Fixed

- Bug: infinite loop while skkiping words on input box ([#129], [#131])
- Fix fail on contact sync for contacts without a UUID ([#152])

[#122]: https://github.com/boxdot/gurk-rs/pull/122
[#126]: https://github.com/boxdot/gurk-rs/pull/126
Expand All @@ -26,6 +27,7 @@
[#131]: https://github.com/boxdot/gurk-rs/pull/131
[#135]: https://github.com/boxdot/gurk-rs/pull/135
[#142]: https://github.com/boxdot/gurk-rs/pull/142
[#152]: https://github.com/boxdot/gurk-rs/pull/152

## 0.2.3

Expand Down
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ debug = 0
lto = "thin"

[dependencies]
presage = { git = "https://github.com/whisperfish/presage.git", rev = "f09db39" }
presage = { git = "https://github.com/whisperfish/presage.git", rev = "8fcfb65" }

anyhow = "1.0.40"
async-trait = "0.1.51"
Expand Down
2 changes: 1 addition & 1 deletion src/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ fn add_attachments(msg: &app::Message, out: &mut String) {
}
}

fn add_reactions(msg: &app::Message, out: &mut String) {
fn add_reactions(msg: &app::Message, out: &mut dyn fmt::Write) {
if !msg.reactions.is_empty() {
fmt::write(
out,
Expand Down

0 comments on commit 138f185

Please sign in to comment.