fixes
[audio.git] / src / archive / migrations / 0010_populate_license.py
index dc59bdc..9533003 100644 (file)
@@ -10,7 +10,7 @@ def populate_license(apps, schema_editor):
     licenses = {}
     for a in Audiobook.objects.all():
         if a.mp3_tags:
-            tags = json.loads(a.mp3_tags)
+            tags = json.loads(a.mp3_published_tags)
             uri = tags.get('license')
             if not uri:
                 continue