From f18f89994e58a9f1f0782d9c58a6cd9eec9b92ef Mon Sep 17 00:00:00 2001 From: Jake Visser Date: Sat, 22 Jul 2017 21:44:56 -0700 Subject: [PATCH] fix due to azure firewall content filtering --- qcbadge/Controllers/HomeController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qcbadge/Controllers/HomeController.cs b/qcbadge/Controllers/HomeController.cs index 8f40b7c..72bb56b 100644 --- a/qcbadge/Controllers/HomeController.cs +++ b/qcbadge/Controllers/HomeController.cs @@ -182,6 +182,8 @@ namespace qcbadge.Controllers if (!String.IsNullOrEmpty(advertData64)) { + //System.Diagnostics.Debug.WriteLine(advertData64); + advertData64 = advertData64.Replace(' ', '+'); byte[] bytes = Convert.FromBase64String(advertData64); advertData = "0x" + BitConverter.ToString(bytes);