Platform Update: It Broke JSON

Platform Update: It Broke JSON

Here is one element of my JSON ouput today

{
   "ID":"212085000007745003",
   "LISTS":[
      "[NISHIOL",
      " NISVARP",
      " NISGRE8",
      " NISGRE9]"
   ],
   "EMAIL":"someone@gmail.com"
}








Yesterday, it looked more like this:
 {
   "ID":"212085000007745003",
   "LISTS":[
      "NISHIOL",
      "NISVARP",
      "NISGRE8",
      "NISGRE9"
   ],
   "EMAIL":"someone@gmail.com"
}








What happened? Note the extra brackets and odd spaces.
I'm using a PHP script to process this and now it's broken due to the format change.
My client organization cannot send email to their subscribers until this issue is fixed. For now I have manually edited a static JSON file to correct the issue.

John M. Whitney