Skip to content

Fixed critical bug in metadata insertion

Raza, Zamaan requested to merge metadata_insert_bugfix into develop

Resolves #91 (closed)

Metadata was added to the map using map::insert, which works if the key does not exist, but silently returns false if does, and does not overwrite the value. Since map::insert is always called once to load the default parameters, the defaults were never being overwritten.

Merge request reports