From 07504232a9cb3ec29905f579b9dcdc7637c06bd5 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 24 Jul 2020 08:43:40 +1200 Subject: [PATCH] Move new connection refused reason to end to maintain compatability --- libraries/networking/src/DomainHandler.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/libraries/networking/src/DomainHandler.h b/libraries/networking/src/DomainHandler.h index 1f97327ab0..3bfd742d3a 100644 --- a/libraries/networking/src/DomainHandler.h +++ b/libraries/networking/src/DomainHandler.h @@ -177,9 +177,9 @@ public: * You could not be logged into the domain. * * - * NotAuthorized + * NotAuthorizedMetaverse * 3 - * You are not authorized to connect to the domain. + * You are not authorized to connect to the domain per your metaverse login. * * * TooManyUsers @@ -191,6 +191,11 @@ public: * 5 * Connecting to the domain timed out. * + * + * NotAuthorizedDomain + * 6 + * You are not authorized to connect to the domain per your domain login. + * * * * @typedef {number} Window.ConnectionRefusedReason @@ -200,9 +205,9 @@ public: ProtocolMismatch, LoginError, NotAuthorizedMetaverse, - NotAuthorizedDomain, TooManyUsers, - TimedOut + TimedOut, + NotAuthorizedDomain }; public slots: