We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7f33ad + 04916a0 commit 091aa11Copy full SHA for 091aa11
addons/godot-firebase/Utilities.gd
@@ -58,6 +58,8 @@ static func from_firebase_type(value : Variant) -> Variant:
58
59
if value.has("mapValue"):
60
value = fields2dict(value.values()[0])
61
+ elif value.has("arrayValue"):
62
+ value = fields2array(value.values()[0])
63
elif value.has("timestampValue"):
64
value = Time.get_datetime_dict_from_datetime_string(value.values()[0], false)
65
else:
0 commit comments