Update euphoxide
This commit is contained in:
parent
847af34ceb
commit
8c4a966451
4 changed files with 6 additions and 3 deletions
|
|
@ -17,6 +17,9 @@ Procedure when bumping the version number:
|
|||
### Changed
|
||||
- Improved JSON export performance
|
||||
|
||||
### Fixed
|
||||
- Rooms reconnecting instead of showing error popups
|
||||
|
||||
## v0.6.0 - 2023-04-04
|
||||
|
||||
### Added
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -380,7 +380,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "euphoxide"
|
||||
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 = [
|
||||
"async-trait",
|
||||
"caseless",
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ features = ["rustls-tls-native-roots"]
|
|||
|
||||
[dependencies.euphoxide]
|
||||
git = "https://github.com/Garmelon/euphoxide.git"
|
||||
rev = "768a259f02f5743f7812904657a99f1f58b8e835"
|
||||
rev = "0f217a6279181b0731216760219e8ff0fa01e449"
|
||||
features = ["bot"]
|
||||
|
||||
# [patch."https://github.com/Garmelon/euphoxide.git"]
|
||||
|
|
|
|||
|
|
@ -316,7 +316,7 @@ impl Room {
|
|||
}
|
||||
|
||||
pub fn logout(&self) -> Result<(), Error> {
|
||||
self.conn_tx()?.send_only(Logout);
|
||||
self.conn_tx()?.send_only(Logout {});
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue