From e0ea0b201b8e3b2e1b659d773fcdabdc3867ebc6 Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Tue, 17 Sep 2024 10:09:46 +0100 Subject: [PATCH] Use element-hq links to GitHub issues for migration advisor (#3204) --- tools/syn2mas/src/advisor.mts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/syn2mas/src/advisor.mts b/tools/syn2mas/src/advisor.mts index 95f148603..da82e6874 100644 --- a/tools/syn2mas/src/advisor.mts +++ b/tools/syn2mas/src/advisor.mts @@ -96,17 +96,17 @@ export async function advisor(): Promise { ); if (guestUsers > 0) { error( - `Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445`, + `Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445`, ); } if (synapseConfig.allow_guest_access) { if (guestUsers > 0) { error( - "Synapse config allows guest access which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445", + "Synapse config allows guest access which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445", ); } else { error( - "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", + "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", ); } } @@ -118,7 +118,7 @@ export async function advisor(): Promise { } if (synapseConfig.enable_registration_captcha) { error( - "Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/138", + "Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/138", ); } if (synapseConfig.user_consent) { @@ -140,7 +140,7 @@ export async function advisor(): Promise { ); if (usersWithoutEmailAddress > 0) { warn( - `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`, + `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`, ); }