Skip to content

Commit

Permalink
fix member name in json_data_reader
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Nov 21, 2023
1 parent d822adf commit 5f00764
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JsonDataReader final : public data_interfaces::IDataReader {
Single<data_model::ItemDescriptor<DataModel>> Deserialize(
DataKind const& kind,
std::string const& key) const {
auto result = source_.Get(kind, key);
auto result = reader_.Get(kind, key);

if (!result) {
/* the actual fetch failed */
Expand Down

0 comments on commit 5f00764

Please sign in to comment.