Skip to content

Commit

Permalink
Merge pull request #28 from Luxoft/iatsuta/27-fix-AccessDeniedExcepti…
Browse files Browse the repository at this point in the history
…onService-message

#27
  • Loading branch information
iatsuta authored Feb 3, 2022
2 parents 37f4f57 + d06c0da commit 5efeb4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected virtual string GetAccessDeniedExceptionMessage<TDomainObject>(TDomainO

var messageBody = $" with {this.PrintElement(first.Key, first.Value)}";

var messagePostfix = other.Any() ? $" ({other.Join(", ", pair => this.PrintElement(pair.Key, pair.Value))}" : "";
var messagePostfix = other.Any() ? $" ({other.Join(", ", pair => this.PrintElement(pair.Key, pair.Value))})" : "";

var realFormatMessageFunc = formatMessageFunc ?? (v => v);

Expand Down
6 changes: 3 additions & 3 deletions src/__SolutionItems/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[assembly: AssemblyCompany("Luxoft")]
[assembly: AssemblyCopyright("Copyright © Luxoft 2009-2022")]

[assembly: AssemblyVersion("15.2.1.0")]
[assembly: AssemblyFileVersion("15.2.1.0")]
[assembly: AssemblyInformationalVersion("15.2.1")]
[assembly: AssemblyVersion("15.2.2.0")]
[assembly: AssemblyFileVersion("15.2.2.0")]
[assembly: AssemblyInformationalVersion("15.2.2")]

#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
Expand Down

0 comments on commit 5efeb4a

Please sign in to comment.