aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-20 18:48:52 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-20 18:48:52 -0500
commite297e90bceeb3310e32142af406403d54875720d (patch)
tree27cedda92ea6452f148bbc87c59fbdbf50566174 /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parent94e622e3a0cfcd14ad47ede3342dfab7a862c4d9 (diff)
update .net core startup
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index 255235cc7..150e4072a 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -95,6 +95,14 @@ namespace Emby.Server.Implementations.Data
DbFilePath = Path.Combine(_config.ApplicationPaths.DataPath, "library.db");
}
+ protected override bool AllowLockRecursion
+ {
+ get
+ {
+ return true;
+ }
+ }
+
private const string ChaptersTableName = "Chapters2";
protected override int? CacheSize