File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ void Metadata::fromJson(const json& j)
173173 for (const auto & element : j.items ())
174174 {
175175 if (supported_tags.find (element.key ()) == supported_tags.end ())
176- LOG (WARNING , LOG_TAG ) << " Tag not supoorted : " << element.key () << " \n " ;
176+ LOG (WARNING , LOG_TAG ) << " Tag not supported : " << element.key () << " \n " ;
177177 }
178178
179179 readTag (j, " trackId" , track_id);
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ void Properties::fromJson(const json& j)
125125 bool is_rw = (rw_props.find (element.key ()) != rw_props.end ());
126126 bool is_ro = (ro_props.find (element.key ()) != ro_props.end ());
127127 if (!is_rw && !is_ro)
128- LOG (WARNING , LOG_TAG ) << " Property not supoorted : " << element.key () << " \n " ;
128+ LOG (WARNING , LOG_TAG ) << " Property not supported : " << element.key () << " \n " ;
129129 }
130130
131131 std::optional<std::string> opt;
You can’t perform that action at this time.
0 commit comments