mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 15:08:28 +00:00
Fix infiniteloop
This commit is contained in:
parent
dc49027f16
commit
646ed87752
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ func (t *txnReq) processTransaction() (*gomatrixserverlib.RespSend, error) {
|
||||||
|
|
||||||
type unknownRoomError string
|
type unknownRoomError string
|
||||||
|
|
||||||
func (e unknownRoomError) Error() string { return fmt.Sprintf("unknown room %q", e) }
|
func (e unknownRoomError) Error() string { return fmt.Sprintf("unknown room %q", string(e)) }
|
||||||
|
|
||||||
func (t *txnReq) processEvent(e gomatrixserverlib.Event) error {
|
func (t *txnReq) processEvent(e gomatrixserverlib.Event) error {
|
||||||
refs := e.PrevEvents()
|
refs := e.PrevEvents()
|
||||||
|
|
Loading…
Reference in a new issue