CC-2612 : Upgrade: Push DB metadata into the file before upgrade

This commit is contained in:
Naomi Aro 2011-08-01 16:29:41 +02:00
parent 0501aee15b
commit aa29afc438
2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ class MediaMonitorCommon:
show_hour = title[0]
show_min = title[1]
show_sec = title[2]
show_name = title[3:]
show_name = '-'.join(title[3:])
new_md = {}
new_md["MDATA_KEY_FILEPATH"] = original_path

View File

@ -199,7 +199,7 @@ class MediaMonitorCommon:
show_hour = title[0]
show_min = title[1]
show_sec = title[2]
show_name = title[3:]
show_name = '-'.join(title[3:])
new_md = {}
new_md["MDATA_KEY_FILEPATH"] = original_path