Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Changed response from /Running
Browse files Browse the repository at this point in the history
The success bool just gives the status, better use the message to explain what is going on
  • Loading branch information
abrahampo1 authored Dec 18, 2022
1 parent 5837542 commit 58363a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RBX Alt Manager/AccountManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ private string SendResponse(HttpListenerContext Context)

if (!request.IsLocal || request.Url.AbsolutePath == "/favicon.ico") return WebServerResponse("", true);

if (request.Url.AbsolutePath == "/Running") return WebServerResponse("true", true);
if (request.Url.AbsolutePath == "/Running") return WebServerResponse("Roblox Account Manager is running", true);

string Body = new StreamReader(request.InputStream).ReadToEnd();
string Method = request.Url.AbsolutePath.Substring(1);
Expand Down Expand Up @@ -1601,4 +1601,4 @@ private void ShuffleIcon_Click(object sender, EventArgs e)
}
}
}
}
}

0 comments on commit 58363a4

Please sign in to comment.