I've noticed an error with FirebaseDB GetValue function or more likely the "when FirebaseDB GotValue" function.
If I structure my firebase database table as follows
root
- child1
-- 0: "Hello World"
-- 1: "Hello World"
-- 2: "Hello World"
Then ask FirebaseDB to GetValue for tag "child1", the FirebaseDB GotValue then returns a list with all my "Hello World" text string elements
Now if I structure my firebase database table as follows
root
- child1: "Hello World"
and similarly ask Firebase to GetValue for tag "child1", the FirebaseDB GotValue only returns a Value, which is not interpreted as a list in this case, as "Hello". I also noticed that if I make my child1: "Hello,World" this too just returns "Hello".