How to reproduce:
- with an event handler on the documentCreated event, create a version
function run(input, params) { input = Document.CreateVersion(input, { 'increment':'Major', /*required:false - type: boolean*/ 'saveDocument': true }); }
- create a new Picture document with a main file
Result:
unless the conversion was already cached, the picture conversion is most likely to contain the default generic empty...jpg image
The compute code handles versions but this is never used because no conversion task is created for versions. The condition here is never true which results in the DISABLE_PICTURE_VIEWS_GENERATION_LISTENER being set.
In this simple situation, it sounds fair to expect the application to create and set the conversions for the version. However I don't know if this is generally true.