fix: room directory duplicates

next
timokoesters 2020-04-09 19:38:15 +02:00
parent b12ae15a45
commit cd55220a75
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ pub struct MultiValue(sled::Tree);
impl MultiValue {
/// Get an iterator over all values.
pub fn iter_all(&self) -> sled::Iter {
self.0.iter()
self.0.scan_prefix(b"d")
}
/// Get an iterator over all values of this id.

View File

@ -471,9 +471,9 @@ fn get_public_rooms_filtered_route(
fn get_protocols_route(
body: Ruma<get_protocols::Request>,
) -> MatrixResult<get_protocols::Response> {
MatrixResult(Ok(dbg!(get_protocols::Response {
MatrixResult(Ok(get_protocols::Response {
protocols: HashMap::new(),
})))
}))
}
#[put(
@ -618,7 +618,7 @@ fn main() {
}
pretty_env_logger::init();
let data = Data::load_or_create("localhost");
let data = Data::load_or_create("matrixtesting.koesters.xyz");
data.debug();
rocket::ignite()