Skip to content

Commit c92cf2d

Browse files
committed
updated to 3.6.1 and updated the file QueueITHelpers
1 parent cc188c6 commit c92cf2d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

QueueIT.KnownUserV3.SDK/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
37-
[assembly: AssemblyVersion("3.6.0")]
38-
[assembly: AssemblyFileVersion("3.6.0.0")]
37+
[assembly: AssemblyVersion("3.6.1")]
38+
[assembly: AssemblyFileVersion("3.6.1.0")]

QueueIT.KnownUserV3.SDK/QueueITHelpers.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private void SetStateWithTokenError(string customerId, string errorCode)
9393
HasError = true;
9494
ValidationResult = new RequestValidationResult(
9595
"ConnectorDiagnosticsRedirect",
96-
redirectUrl: string.Format("https://{0}.api2.queue-it.net/{0}/diagnostics/connector/error/{1}", customerId, errorCode)
96+
redirectUrl: string.Format("https://{0}.api2.queue-it.net/{0}/diagnostics/connector/error/?code={1}", customerId, errorCode)
9797
);
9898
}
9999

@@ -102,7 +102,7 @@ private void SetStateWithSetupError()
102102
HasError = true;
103103
ValidationResult = new RequestValidationResult(
104104
"ConnectorDiagnosticsRedirect",
105-
redirectUrl: "https://api2.queue-it.net/diagnostics/connector/error/setup"
105+
redirectUrl: "https://api2.queue-it.net/diagnostics/connector/error/?code=setup"
106106
);
107107
}
108108

QueueIT.KnownUserV3.SDK/UserInQueueService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void ExtendQueueCookie(
3131

3232
internal class UserInQueueService : IUserInQueueService
3333
{
34-
internal const string SDK_VERSION = "v3-aspnet-" + "3.6.0";
34+
internal const string SDK_VERSION = "v3-aspnet-" + "3.6.1";
3535

3636
private readonly IUserInQueueStateRepository _userInQueueStateRepository;
3737

0 commit comments

Comments
 (0)