You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/syn2mas/src/advisor.mts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -96,17 +96,17 @@ export async function advisor(): Promise<void> {
96
96
);
97
97
if(guestUsers>0){
98
98
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`,
100
100
);
101
101
}
102
102
if(synapseConfig.allow_guest_access){
103
103
if(guestUsers>0){
104
104
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",
106
106
);
107
107
}else{
108
108
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",
110
110
);
111
111
}
112
112
}
@@ -118,7 +118,7 @@ export async function advisor(): Promise<void> {
118
118
}
119
119
if(synapseConfig.enable_registration_captcha){
120
120
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",
122
122
);
123
123
}
124
124
if(synapseConfig.user_consent){
@@ -140,7 +140,7 @@ export async function advisor(): Promise<void> {
140
140
);
141
141
if(usersWithoutEmailAddress>0){
142
142
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`,
0 commit comments