mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-29 08:54:34 +02:00
fix: off by one.
Some checks failed
Documentation / Build and Deploy Documentation (push) Has been skipped
Checks / Prefligit / prefligit (push) Failing after 4s
Release Docker Image / define-variables (push) Failing after 2s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Has been skipped
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Has been skipped
Release Docker Image / merge (push) Has been skipped
Checks / Rust / Format (push) Failing after 4s
Checks / Rust / Clippy (push) Failing after 19s
Checks / Rust / Cargo Test (push) Failing after 22s
Some checks failed
Documentation / Build and Deploy Documentation (push) Has been skipped
Checks / Prefligit / prefligit (push) Failing after 4s
Release Docker Image / define-variables (push) Failing after 2s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Has been skipped
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Has been skipped
Release Docker Image / merge (push) Has been skipped
Checks / Rust / Format (push) Failing after 4s
Checks / Rust / Clippy (push) Failing after 19s
Checks / Rust / Cargo Test (push) Failing after 22s
This commit is contained in:
parent
543ab27747
commit
f508e7654c
1 changed files with 1 additions and 1 deletions
|
@ -722,7 +722,7 @@ impl Service {
|
||||||
if event_type != TimelineEventType::RoomCreate && prev_events.is_empty() {
|
if event_type != TimelineEventType::RoomCreate && prev_events.is_empty() {
|
||||||
return Err!(Request(Unknown("Event incorrectly had zero prev_events.")));
|
return Err!(Request(Unknown("Event incorrectly had zero prev_events.")));
|
||||||
}
|
}
|
||||||
if state_key.is_none() && depth.le(&uint!(2)) {
|
if state_key.is_none() && depth.lt(&uint!(2)) {
|
||||||
// The first two events in a room are always m.room.create and m.room.member,
|
// The first two events in a room are always m.room.create and m.room.member,
|
||||||
// so any other events with that same depth are illegal.
|
// so any other events with that same depth are illegal.
|
||||||
warn!(
|
warn!(
|
||||||
|
|
Loading…
Add table
Reference in a new issue