diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f92f9e..2142677 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] ### Added - `?drapmap` command to display NOAA D Region Absorption Predictions map. +### Fixed +- Issue where `?solarweather` would not show a picture (#474). ## [2.9.1] - 2023-01-29 diff --git a/exts/propagation.py b/exts/propagation.py index fe02e50..a49cdb8 100644 --- a/exts/propagation.py +++ b/exts/propagation.py @@ -23,7 +23,7 @@ class PropagationCog(commands.Cog): muf_url = "https://prop.kc2g.com/renders/current/mufd-normal-now.svg" fof2_url = "https://prop.kc2g.com/renders/current/fof2-normal-now.svg" gl_baseurl = "https://www.fourmilab.ch/cgi-bin/uncgi/Earth?img=ETOPO1_day-m.evif&dynimg=y&opt=-p" - n0nbh_sun_url = "http://www.hamqsl.com/solarsun.php" + n0nbh_sun_url = "https://www.hamqsl.com/solarsun.php" noaa_drap_url = "https://services.swpc.noaa.gov/images/animations/d-rap/global/d-rap/latest.png" def __init__(self, bot):