metadata here should really be stored_metadata.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 6 Jun 2014 14:57:27 +0000 (09:57 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 6 Jun 2014 14:57:27 +0000 (09:57 -0500)
We went through all the difficulty of converting the tags and never
saved them!

Thanks to Boris Bobrov for pointing this out.

This commit also sponsored by William Kahn-Greene.  Thanks Will... for
everything! :)

mediagoblin/media_types/video/processing.py

index abd5f36e0bc84b0ed506d0c12570ebdf82346918..454f4ac47d5098404b7a38492799f89cee05b04e 100644 (file)
@@ -109,7 +109,7 @@ def store_metadata(media_entry, metadata):
                 dt.get_minute(), dt.get_second(),
                 dt.get_microsecond()).isoformat()
 
-        metadata['tags'] = tags
+        stored_metadata['tags'] = tags
 
     # Only save this field if there's something to save
     if len(stored_metadata):