Skip to content

Commit

Permalink
Fixed wrong sentdate in some cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Sicos2002 committed Oct 25, 2015
1 parent 703b0a6 commit a369d80
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions MsgMapper/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.9.7.0")]
[assembly: AssemblyFileVersion("1.9.7.0")]
[assembly: AssemblyVersion("1.9.9.0")]
[assembly: AssemblyFileVersion("1.9.9.0")]
4 changes: 2 additions & 2 deletions MsgReader/Outlook/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -711,8 +711,8 @@ public DateTime? SentOn
if (_sentOn != null)
return _sentOn;

_sentOn = GetMapiPropertyDateTime(MapiTags.PR_PROVIDER_SUBMIT_TIME) ??
GetMapiPropertyDateTime(MapiTags.PR_CLIENT_SUBMIT_TIME);
_sentOn = GetMapiPropertyDateTime(MapiTags.PR_CLIENT_SUBMIT_TIME) ??
GetMapiPropertyDateTime(MapiTags.PR_PROVIDER_SUBMIT_TIME);

if (_sentOn == null && Headers != null)
_sentOn = Headers.DateSent.ToLocalTime();
Expand Down
4 changes: 2 additions & 2 deletions MsgReader/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.9.8.0")]
[assembly: AssemblyFileVersion("1.9.8.0")]
[assembly: AssemblyVersion("1.9.9.0")]
[assembly: AssemblyFileVersion("1.9.9.0")]
4 changes: 2 additions & 2 deletions MsgViewer/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.9.7.0")]
[assembly: AssemblyFileVersion("1.9.7.0")]
[assembly: AssemblyVersion("1.9.9.0")]
[assembly: AssemblyFileVersion("1.9.9.0")]

0 comments on commit a369d80

Please sign in to comment.