mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
Merge branch 'master' into kegan/backfill-fix
This commit is contained in:
commit
fc66327f8c
|
|
@ -193,6 +193,12 @@ func (s *OutputRoomEventConsumer) appserviceIsInterestedInEvent(ctx context.Cont
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if event.Type() == gomatrixserverlib.MRoomMember && event.StateKey() != nil {
|
||||||
|
if appservice.IsInterestedInUserID(*event.StateKey()) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Check all known room aliases of the room the event came from
|
// Check all known room aliases of the room the event came from
|
||||||
queryReq := api.GetAliasesForRoomIDRequest{RoomID: event.RoomID()}
|
queryReq := api.GetAliasesForRoomIDRequest{RoomID: event.RoomID()}
|
||||||
var queryRes api.GetAliasesForRoomIDResponse
|
var queryRes api.GetAliasesForRoomIDResponse
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@ and start working on dendrite.
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
Copy the `dendrite-docker.yaml` file to the root of the project and rename it to
|
Create a directory named `cfg` in the root of the project. Copy the
|
||||||
`dendrite.yaml`. It already contains the defaults used in `docker-compose` for
|
`dendrite-docker.yaml` file into that directory and rename it to `dendrite.yaml`.
|
||||||
networking so you will only have to change things like the `server_name` or to
|
It already contains the defaults used in `docker-compose` for networking so you will
|
||||||
toggle `naffka`.
|
only have to change things like the `server_name` or to toggle `naffka`.
|
||||||
|
|
||||||
You can run the following `docker-compose` commands either from the top directory
|
You can run the following `docker-compose` commands either from the top directory
|
||||||
specifying the `docker-compose` file
|
specifying the `docker-compose` file
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue