mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Don't explode if we don't have the event
This commit is contained in:
parent
b579a8ea18
commit
6e17463228
@ -736,7 +736,8 @@ class EventsStore(SQLBaseStore):
|
||||
|
||||
because = yield self.get_event(
|
||||
redaction_id,
|
||||
check_redacted=False
|
||||
check_redacted=False,
|
||||
allow_none=True,
|
||||
)
|
||||
|
||||
if because:
|
||||
@ -746,6 +747,7 @@ class EventsStore(SQLBaseStore):
|
||||
prev = yield self.get_event(
|
||||
ev.unsigned["replaces_state"],
|
||||
get_prev_content=False,
|
||||
allow_none=True,
|
||||
)
|
||||
if prev:
|
||||
ev.unsigned["prev_content"] = prev.get_dict()["content"]
|
||||
|
Loading…
Reference in New Issue
Block a user