This commit is contained in:
j 2011-07-30 13:04:30 +02:00
parent 66e6fb812e
commit ac0018baad

View file

@ -314,7 +314,7 @@ class Item(models.Model):
'url': '/%s/poster.pandora.jpg' % self.itemId, 'url': '/%s/poster.pandora.jpg' % self.itemId,
'width': 640, 'width': 640,
'height': 1024, 'height': 1024,
'service': settings.URL, 'source': settings.URL,
'selected': url == None 'selected': url == None
} }
] ]
@ -326,7 +326,7 @@ class Item(models.Model):
'url': p.url, 'url': p.url,
'width': p.width, 'width': p.width,
'height': p.height, 'height': p.height,
'service': p.service, 'source': p.service,
'selected': p.url == url 'selected': p.url == url
}) })
return posters return posters