aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-22 13:22:01 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-22 13:22:01 -0500
commit3f68882fa8af83448039224760153be3835aa2eb (patch)
treea57697fcb916ba29f650829b5bc12eba4d05cb23 /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parent70df357e1e8fe8ffe3ee2630f9bda9df7c1e1200 (diff)
add setting to control import of missing episodes
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index 929fa30d8..78d78a9df 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -95,13 +95,13 @@ namespace Emby.Server.Implementations.Data
DbFilePath = Path.Combine(_config.ApplicationPaths.DataPath, "library.db");
}
- //protected override bool AllowLockRecursion
- //{
- // get
- // {
- // return true;
- // }
- //}
+ protected override bool AllowLockRecursion
+ {
+ get
+ {
+ return true;
+ }
+ }
private const string ChaptersTableName = "Chapters2";