Malformed data YAML (sync/pull commands) if label field is an integer (fix issue #292)
did
committed Feb 16, 2016
commit 062427408e638153bbf44cc8af86196488b83e9e
Showing 1
changed file with
1 additions
and 1 deletions
locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb b/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb
+1
-1
| @@ | @@ -41,7 +41,7 @@ module Locomotive::Wagon |
| end | |
| end | |
| - | { entry[default_locale].attributes[content_type.label_field_name] => clean_attributes(attributes) } |
| + | { entry[default_locale].attributes[content_type.label_field_name].to_s => clean_attributes(attributes) } |
| end | |
| def fetch_content_types(&block) | |