Skip to content

Commit

Permalink
OnSendFailedEventArgs: data -> message rename
Browse files Browse the repository at this point in the history
  • Loading branch information
swiftyspiffy committed Aug 5, 2023
1 parent 6e98a4d commit 0b90943
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

public class OnSendFailedEventArgs : EventArgs
{
public string Data { get; }
public string Message { get; }

public Exception Exception { get; }

public OnSendFailedEventArgs(Exception exception, string data)
public OnSendFailedEventArgs(Exception exception, string message)
{
Exception = exception;
Data = data;
Message = message;
}
}

0 comments on commit 0b90943

Please sign in to comment.