make sure videoPreview is up to date

This commit is contained in:
j 2015-11-10 16:08:00 +01:00
commit 9be454dfba
3 changed files with 5 additions and 3 deletions

View file

@ -92,7 +92,7 @@ pandora.ui.info = function() {
} else if (view == 'video') {
pandora.api.get({
id: id,
keys: ['duration', 'posterFrame', 'rendered', 'videoRatio']
keys: ['duration', 'posterFrame', 'rendered', 'videoRatio', 'modified']
}, function(result) {
emptyInfo();
if (result.data && result.data.rendered) {
@ -102,6 +102,7 @@ pandora.ui.info = function() {
frameRatio: result.data.videoRatio,
height: pandora.getInfoHeight(true),
id: id,
modified: result.data.modified,
position: !ui.item && ui.listView == 'timelines'
? (ui.videoPoints[id] ? ui.videoPoints[id].position : 0)
: result.data.posterFrame,