Update euphoxide

This commit is contained in:
Joscha 2023-04-08 20:09:18 +02:00
parent 847af34ceb
commit 8c4a966451
4 changed files with 6 additions and 3 deletions

View file

@ -17,6 +17,9 @@ Procedure when bumping the version number:
### Changed ### Changed
- Improved JSON export performance - Improved JSON export performance
### Fixed
- Rooms reconnecting instead of showing error popups
## v0.6.0 - 2023-04-04 ## v0.6.0 - 2023-04-04
### Added ### Added

2
Cargo.lock generated
View file

@ -380,7 +380,7 @@ dependencies = [
[[package]] [[package]]
name = "euphoxide" name = "euphoxide"
version = "0.3.1" version = "0.3.1"
source = "git+https://github.com/Garmelon/euphoxide.git?rev=768a259f02f5743f7812904657a99f1f58b8e835#768a259f02f5743f7812904657a99f1f58b8e835" source = "git+https://github.com/Garmelon/euphoxide.git?rev=0f217a6279181b0731216760219e8ff0fa01e449#0f217a6279181b0731216760219e8ff0fa01e449"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"caseless", "caseless",

View file

@ -35,7 +35,7 @@ features = ["rustls-tls-native-roots"]
[dependencies.euphoxide] [dependencies.euphoxide]
git = "https://github.com/Garmelon/euphoxide.git" git = "https://github.com/Garmelon/euphoxide.git"
rev = "768a259f02f5743f7812904657a99f1f58b8e835" rev = "0f217a6279181b0731216760219e8ff0fa01e449"
features = ["bot"] features = ["bot"]
# [patch."https://github.com/Garmelon/euphoxide.git"] # [patch."https://github.com/Garmelon/euphoxide.git"]

View file

@ -316,7 +316,7 @@ impl Room {
} }
pub fn logout(&self) -> Result<(), Error> { pub fn logout(&self) -> Result<(), Error> {
self.conn_tx()?.send_only(Logout); self.conn_tx()?.send_only(Logout {});
Ok(()) Ok(())
} }
} }