1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-12-20 16:41:13 -05:00

Fixed a problem with the AVWX plugin not working

the regex for the plugin was not matching correctly
This commit is contained in:
Hemna 2021-09-02 11:06:25 -04:00
parent 558710d348
commit 8ada789d4d

View File

@ -306,7 +306,7 @@ class AVWXWeatherPlugin(plugin.APRSDRegexCommandPluginBase):
""" """
version = "1.0" version = "1.0"
command_regex = "^[metar]" command_regex = "^[mM]"
command_name = "Weather" command_name = "Weather"
@trace.trace @trace.trace
@ -314,7 +314,7 @@ class AVWXWeatherPlugin(plugin.APRSDRegexCommandPluginBase):
fromcall = packet.get("from") fromcall = packet.get("from")
message = packet.get("message_text", None) message = packet.get("message_text", None)
# ack = packet.get("msgNo", "0") # ack = packet.get("msgNo", "0")
LOG.info(f"OWMWeather Plugin '{message}'") LOG.info(f"AVWXWeather Plugin '{message}'")
a = re.search(r"^.*\s+(.*)", message) a = re.search(r"^.*\s+(.*)", message)
if a is not None: if a is not None:
searchcall = a.group(1) searchcall = a.group(1)