Skip to content

Commit

Permalink
Replaced wrong method call in PostToTelegram action
Browse files Browse the repository at this point in the history
Updated Version
  • Loading branch information
easly1989 committed Feb 21, 2018
1 parent 3623e39 commit de4d794
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DFAssist/MainControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ private void PostToTelegramIfNeeded(string server, EventType eventType, int[] ar
if (_isDutyAlertEnabled)
{
var title = head + (args[0] != 0 ? GetRouletteName(args[0]) : Localization.GetText("app-name"));
ToastWindowNotification(title, ">> " + GetInstanceName(args[1]));
PostToTelegram(title + " >> " + GetInstanceName(args[1]));
}
break;
case EventType.FATE_BEGIN:
Expand Down
4 changes: 2 additions & 2 deletions DFAssist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.7")]
[assembly: AssemblyFileVersion("1.3.7")]
[assembly: AssemblyVersion("1.3.8")]
[assembly: AssemblyFileVersion("1.3.8")]

0 comments on commit de4d794

Please sign in to comment.