diff --git a/PV_Forecast_plotmemory/module.php b/PV_Forecast_plotmemory/module.php index b354a20..05159bd 100644 --- a/PV_Forecast_plotmemory/module.php +++ b/PV_Forecast_plotmemory/module.php @@ -194,12 +194,6 @@ class PV_Forecast_plotmemory extends IPSModule public function GetVisualizationTile(): string { - // Strict daily mode: do NOT fetch from URL when tile is opened. - // If you really want this fallback, enable AllowTileFetchIfEmpty. - if ($this->GetBuffer("ForecastRaw") === "" && $this->ReadPropertyBoolean("AllowTileFetchIfEmpty")) { - $this->UpdateForecast(); - } - $html = file_get_contents(__DIR__ . "/module.html"); $html = str_replace("{{INSTANCE_ID}}", (string)$this->InstanceID, $html); return $html;