From cbd0f15224548f9612838ec91d7c32de24a33dc8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 13 Mar 2019 09:42:04 -0400 Subject: [PATCH] back to regular ip string --- src/Core/Services/Implementations/AzureQueueBlockIpService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/AzureQueueBlockIpService.cs b/src/Core/Services/Implementations/AzureQueueBlockIpService.cs index 00574f39a..a7843e8ba 100644 --- a/src/Core/Services/Implementations/AzureQueueBlockIpService.cs +++ b/src/Core/Services/Implementations/AzureQueueBlockIpService.cs @@ -35,7 +35,7 @@ namespace Bit.Core.Services } _lastBlock = new Tuple(ipAddress, permanentBlock, now); - var message = new CloudQueueMessage(CoreHelpers.Base64UrlEncodeString(ipAddress)); + var message = new CloudQueueMessage(ipAddress); await _blockIpQueue.AddMessageAsync(message); if(!permanentBlock) {