Skip to content

Commit

Permalink
Merge pull request #250 from AllStarLink/elnodedb
Browse files Browse the repository at this point in the history
fix 249
  • Loading branch information
jxmx authored Oct 11, 2024
2 parents 63b0756 + fcb0968 commit 1762034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asl_allmon/ami_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def get_echolink_name(self, echolink_id):
el_info = await self.__ami_conn.asl_cmd_response(elnodecmd)
ra = re.split(r'[\n\r]+', el_info)
for l in ra:
if re.match(r"^[0-9]+\|", l):
if re.match(r"^Output", l) or re.match(r"^[0-9]+\|", l):
ell = re.split(r'\|', l)
log.debug("exiting get_echolink_name(%s)", echolink_id)
return "%s - Echolink" % (ell[1])
Expand Down

0 comments on commit 1762034

Please sign in to comment.