Skip to content

Commit

Permalink
android
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyokone committed Dec 18, 2024
1 parent 3b6e835 commit c629919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected void writeValue(ByteArrayOutputStream stream, Object value) {
writeDouble(stream, ((GeoPoint) value).getLongitude());
} else if (value instanceof VectorValue) {
stream.write(DATA_TYPE_VECTOR_VALUE);
writeValue(stream, ((VectorValue) value).getInternalValue());
writeValue(stream, ((VectorValue) value).toArray());
} else if (value instanceof DocumentReference) {
stream.write(DATA_TYPE_DOCUMENT_REFERENCE);
FirebaseFirestore firestore = ((DocumentReference) value).getFirestore();
Expand Down

0 comments on commit c629919

Please sign in to comment.