Skip to content
Snippets Groups Projects
Commit 7fdf72cb authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

Merge branch 'fix-thumbnail-initializer' into 'master'

Fix Thumbnail Initializer

Avoid confusion between "nil", "empty" or "exists". Now is always "empty" or "exists", no matter what it is in the database.

See merge request !84
parents dff7cdd9 aa035cb4
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ class LearningObjectBuilder
id: args['@rid'],
name: args['name'],
description: args['description'],
thumbnail: args['thumbnail'],
thumbnail: (args['thumbnail'] or ''),
id_dspace: args['id_dspace'],
type: args['type'],
bitstreams: args['bitstreams'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment