fix detection string for star citizen alerts

This commit is contained in:
Luke Robles 2023-10-12 11:57:39 -07:00
parent 740d51f94c
commit 7d586ffd68

View File

@ -227,7 +227,7 @@ class StarCitizen(commands.Cog):
rsi_incident_file = "/tmp/rsi_incident"
current_status = soup.find("div", {"class": "summary"})
if current_status.text.strip() != "No issues detectedd":
if current_status.text.strip() != "No issues detected":
# Find the lastest incident
latest_incident = current_status.findNext("h3")