fix due to azure firewall content filtering

This commit is contained in:
Jake Visser 2017-07-22 21:44:56 -07:00
parent 3caaedef66
commit f18f89994e

View file

@ -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);