aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Library/LibraryService.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-24 23:02:20 -0500
committerGitHub <noreply@github.com>2019-01-24 23:02:20 -0500
commit48ad18d12baeeb42ec0ec7df9473330dcbc76754 (patch)
treed09db721f60f79423f98110e2dc15051787945dc /MediaBrowser.Api/Library/LibraryService.cs
parentfe197415cac19c0e4005c52761c5e7a37b8a4557 (diff)
parent905a253ff5ce2eeee9806b7a4581506468b2fb55 (diff)
Merge pull request #452 from Bond-009/activitydb
Use EF Core for Activity database
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/Library/LibraryService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs
index 12d807a7e..d3009295f 100644
--- a/MediaBrowser.Api/Library/LibraryService.cs
+++ b/MediaBrowser.Api/Library/LibraryService.cs
@@ -839,7 +839,7 @@ namespace MediaBrowser.Api.Library
{
try
{
- _activityManager.Create(new ActivityLogEntry
+ _activityManager.CreateAsync(new ActivityLogEntry
{
Name = string.Format(_localization.GetLocalizedString("UserDownloadingItemWithValues"), user.Name, item.Name),
Type = "UserDownloadingContent",