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

Commit

Permalink
Fixed #16
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxXor committed Jan 19, 2015
1 parent cc7d22d commit 3ff75f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Client/Core/RemoteShell/Shell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ private void Redirect()
{
while (!reader.EndOfStream && _read)
{
new Packets.ClientPackets.ShellCommandResponse(reader.ReadLine() + Environment.NewLine).Execute(Program.ConnectClient);
var read = reader.ReadLine();
Thread.Sleep(50);
new Packets.ClientPackets.ShellCommandResponse(read + Environment.NewLine).Execute(Program.ConnectClient);
}
}

Expand Down

0 comments on commit 3ff75f9

Please sign in to comment.