Skip to content

Commit e0ea0b2

Browse files
authored
Use element-hq links to GitHub issues for migration advisor (#3204)
1 parent 76c1439 commit e0ea0b2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/syn2mas/src/advisor.mts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,17 @@ export async function advisor(): Promise<void> {
9696
);
9797
if (guestUsers > 0) {
9898
error(
99-
`Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445`,
99+
`Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445`,
100100
);
101101
}
102102
if (synapseConfig.allow_guest_access) {
103103
if (guestUsers > 0) {
104104
error(
105-
"Synapse config allows guest access which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445",
105+
"Synapse config allows guest access which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445",
106106
);
107107
} else {
108108
error(
109-
"Synapse config allows guest access which isn't supported by MAS, but no guest users were found in the database so the option could be disabled: https://github.com/matrix-org/matrix-authentication-service/issues/1445",
109+
"Synapse config allows guest access which isn't supported by MAS, but no guest users were found in the database so the option could be disabled: https://github.com/element-hq/matrix-authentication-service/issues/1445",
110110
);
111111
}
112112
}
@@ -118,7 +118,7 @@ export async function advisor(): Promise<void> {
118118
}
119119
if (synapseConfig.enable_registration_captcha) {
120120
error(
121-
"Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/138",
121+
"Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/138",
122122
);
123123
}
124124
if (synapseConfig.user_consent) {
@@ -140,7 +140,7 @@ export async function advisor(): Promise<void> {
140140
);
141141
if (usersWithoutEmailAddress > 0) {
142142
warn(
143-
`Synapse database contains ${usersWithoutEmailAddress} users without a verified email address who will need to verify their email address before they can login after migration: https://github.com/matrix-org/matrix-authentication-service/issues/1505`,
143+
`Synapse database contains ${usersWithoutEmailAddress} users without a verified email address who will need to verify their email address before they can login after migration: https://github.com/element-hq/matrix-authentication-service/issues/1505`,
144144
);
145145
}
146146

0 commit comments

Comments
 (0)