fix detection string for star citizen alerts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Robles 2023-10-12 11:57:39 -07:00
parent f8b5fae956
commit 4c6229e1da

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")