Decoded table prints nil?
I made a system to Book flights with the Trello API.
02 | local HttpService = game:GetService( "HttpService" ) |
03 | ap = require(game.ServerScriptService.TrelloAPI) |
04 | BoardID = ap:GetBoardID( "REWOT Flights" ) |
06 | bi = ap:GetLists(BoardID) |
09 | local json = HttpService:JSONEncode(bi) |
In the output "print(json[1])" is "nil"
This is the table:
[{"pos":65535,"closed":false,"subscribed":false,"id":"58c02cce4356c6873fc04985",
"idBoard":"58c02cc833c86452d2825b77","name":"TestBoard"},{"pos":131071,"closed":false,"subscribed":false,"id":"58c16e98b86cb1d603d793e2",
"idBoard":"58c02cc833c86452d2825b77","name":"testboard2"}]
Why is the output nil?