diff --git a/platform/features/imagery/src/controllers/ImageryController.js b/platform/features/imagery/src/controllers/ImageryController.js index d9ea5c8478..7d0591e3d8 100644 --- a/platform/features/imagery/src/controllers/ImageryController.js +++ b/platform/features/imagery/src/controllers/ImageryController.js @@ -76,6 +76,14 @@ define( .getValueFormatter(metadata.valuesForHints(['image'])[0]); this.unsubscribe = this.openmct.telemetry .subscribe(this.domainObject, this.updateValues); + this.openmct.telemetry + .request(this.domainObject, { + strategy: 'latest', + size: 1 + }) + .then(function (values) { + this.updateValues(values[0]); + }.bind(this)); }.bind(this)); };