fix regression caused by ffc2eca6da

This commit is contained in:
Salakar
2018-10-16 18:45:00 +01:00
parent b4ac1ab7b0
commit f43e56b10e

View File

@@ -67,6 +67,6 @@ export default class DocumentSnapshot {
return extractFieldPathData(this._data, fieldPath._segments);
}
return deepGet(this._data, fieldPath, './');
return deepGet(this._data, fieldPath, '.');
};
}