Merge pull request #59880 from florianjacob/matrix-synapse-identity-servers

nixos/matrix-synapse: correct trusted_third_party_id_servers default
This commit is contained in:
Léo Gaspard 2019-04-21 02:41:21 +02:00 committed by GitHub
commit 451961ead2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -554,7 +554,10 @@ in {
};
trusted_third_party_id_servers = mkOption {
type = types.listOf types.str;
default = ["matrix.org"];
default = [
"matrix.org"
"vector.im"
];
description = ''
The list of identity servers trusted to verify third party identifiers by this server.
'';