From fc896eb8c7cbd45e3db460004637eb2627a85244 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 17 May 2020 12:17:42 -0600 Subject: [PATCH] Call disposeInternal on the super --- src/ol/source/Raster.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/source/Raster.js b/src/ol/source/Raster.js index e02dd0e853..b8394dd7b5 100644 --- a/src/ol/source/Raster.js +++ b/src/ol/source/Raster.js @@ -797,6 +797,7 @@ class RasterSource extends ImageSource { if (this.processor_) { this.processor_.dispose(); } + super.disposeInternal(); } }