Skip to content

Commit

Permalink
fix Bug 69785
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksimChegulov committed Sep 2, 2024
1 parent d1698d4 commit 49e371e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion products/ASC.Files/Core/Core/History/ActionInterpreter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public async ValueTask<HistoryEntry> InterpretAsync(DbAuditEvent @event, IServic
if (!string.IsNullOrEmpty(data.InitiatorName))
{
initiatorName = initiatorId == ASC.Core.Configuration.Constants.Guest.ID && data.InitiatorName != AuditReportResource.GuestAccount
? $"{data.InitiatorName} ({AuditReportResource.GuestAccount})"
? $"{data.InitiatorName} ({FilesCommonResource.ExternalUser})"
: data.InitiatorName;
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions products/ASC.Files/Core/Resources/FilesCommonResource.resx
Original file line number Diff line number Diff line change
Expand Up @@ -559,4 +559,7 @@ Highest compatibility with docx, xlsx, pptx.</value>
<data name="FormNumber" xml:space="preserve">
<value>Form number</value>
</data>
<data name="ExternalUser" xml:space="preserve">
<value>External user</value>
</data>
</root>

0 comments on commit 49e371e

Please sign in to comment.