Transition to shutdown state instead of off

This commit is contained in:
Anna Puddles
2023-01-13 19:59:10 -05:00
committed by GitHub
parent 184e6533f2
commit 2037b05303

View File

@@ -335,7 +335,7 @@ state startup
}
else if (message == "shutdown")
{
state off;
state shutdown;
}
}
@@ -480,7 +480,7 @@ state request_url
}
else if (message == "shutdown")
{
state off;
state shutdown;
}
}
@@ -597,7 +597,7 @@ state main
}
else if (method == "prim-dns:shutdown")
{
state off;
state shutdown;
}
}