forked from organicmaps/organicmaps
[transit] Fix stop title saving.
This commit is contained in:
parent
83dded092c
commit
9535ee5d45
1 changed files with 1 additions and 1 deletions
|
@ -1548,7 +1548,7 @@ void Stops::Write(IdSet const & ids, std::ofstream & stream) const
|
|||
|
||||
json_object_set_new(node.get(), "point", PointToJson(stop.m_point).release());
|
||||
|
||||
if (stop.m_title.empty())
|
||||
if (!stop.m_title.empty())
|
||||
ToJSONObject(*node, "title", stop.m_title);
|
||||
|
||||
if (!stop.m_timetable.empty())
|
||||
|
|
Loading…
Add table
Reference in a new issue