Skip to content

Commit

Permalink
Fix #1888 using option 1 as discussed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tkael committed Oct 25, 2020
1 parent be8b6b2 commit 3689160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JournalMonitor/JournalMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2760,7 +2760,7 @@ async void ModuleArrived()
{
events.Add(new TradeVoucherRedeemedEvent(timestamp, rewards, amount, brokerpercentage) { raw = line, fromLoad = fromLogLoad });
}
else if (type == "settlement" || type == "scannable")
else if (type == "codex" || type == "settlement" || type == "scannable")
{
events.Add(new DataVoucherRedeemedEvent(timestamp, rewards, amount, brokerpercentage) { raw = line, fromLoad = fromLogLoad });
}
Expand Down

0 comments on commit 3689160

Please sign in to comment.