From c67aa04f24c7aafcb2b4648bc5a30b8aba360584 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Thu, 2 Jan 2020 14:29:03 +0000 Subject: [PATCH] gomatrix to gomatrixserverlib on some weird line change --- syncapi/storage/output_room_events_table.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/syncapi/storage/output_room_events_table.go b/syncapi/storage/output_room_events_table.go index c98dcc785..e1803a17d 100644 --- a/syncapi/storage/output_room_events_table.go +++ b/syncapi/storage/output_room_events_table.go @@ -21,7 +21,6 @@ import ( "sort" "github.com/matrix-org/dendrite/roomserver/api" - "github.com/matrix-org/gomatrix" "github.com/lib/pq" "github.com/matrix-org/dendrite/common" @@ -127,7 +126,7 @@ func (s *outputRoomEventsStatements) prepare(db *sql.DB) (err error) { // two positions, only the most recent state is returned. func (s *outputRoomEventsStatements) selectStateInRange( ctx context.Context, txn *sql.Tx, oldPos, newPos int64, - stateFilterPart *gomatrix.FilterPart, + stateFilterPart *gomatrixserverlib.FilterPart, ) (map[string]map[string]bool, map[string]streamEvent, error) { stmt := common.TxStmt(txn, s.selectStateInRangeStmt)