Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Commit

Permalink
comment. SendErrorJson cause ErrorMessages.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZCube committed May 21, 2017
1 parent e57c5ba commit c7b3462
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ACTWebSocket.Core/ACTWebSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@ private void gamepath_TextChanged(object sender, EventArgs e)
{
game.SelectedIndex = 4;
}
else if (filepath.ToLower() == "ffxiv.exe")
else if (filepath.ToLower() == "ffxiv_dx11.exe")
{
game.SelectedIndex = 4;
}
Expand Down
4 changes: 3 additions & 1 deletion ACTWebSocket.Core/Functions/OverlayDataSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ private void ACTExtension(bool isImport, LogLineEventArgs e)
catch(Exception err)
{
// 예외처리 필요.
SendErrorJSON(err.ToString());
// TODO : exception....
// Log(LogLevel.Debug, err.ToString());
//SendErrorJSON(err.ToString());
}
}

Expand Down

0 comments on commit c7b3462

Please sign in to comment.