aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-09-22 16:35:54 -0400
committerGitHub <noreply@github.com>2017-09-22 16:35:54 -0400
commita31006577432efd25de2fe0e32a3900af7b0907a (patch)
tree60cde7a83b451889dcfb7dc88f02df6ffd6e90f1 /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parent8586c9f6a7dc8562da1f6bca2b3ce53398dd03b5 (diff)
parentc25db09e37ccdf158e607792cf678b1ed22b13a7 (diff)
Merge pull request #2906 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index 89ffb0fce3..987b1df39b 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -120,13 +120,13 @@ namespace Emby.Server.Implementations.Data
protected override void CloseConnection()
{
- base.CloseConnection();
-
if (_shrinkMemoryTimer != null)
{
_shrinkMemoryTimer.Dispose();
_shrinkMemoryTimer = null;
}
+
+ base.CloseConnection();
}
/// <summary>