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
|
### 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
2
Cargo.lock
generated
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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"]
|
||||||
|
|
|
||||||
|
|
@ -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(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue