aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-04 02:35:24 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-04 02:35:24 -0400
commit9b0e289602bc170474a756abed121da9fb3b1df1 (patch)
treec660437dac01b4f0f601e349de06b83e793f93c8 /Emby.Server.Implementations/Data/BaseSqliteRepository.cs
parent1c93fcef015ed5411914fd30506b627d0aaf33a9 (diff)
update databases
Diffstat (limited to 'Emby.Server.Implementations/Data/BaseSqliteRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/BaseSqliteRepository.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
index 462ff3e47..72c069073 100644
--- a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
+++ b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
@@ -131,6 +131,10 @@ namespace Emby.Server.Implementations.Data
{
queries.Add("PRAGMA temp_store = memory");
}
+ else
+ {
+ queries.Add("PRAGMA temp_store = file");
+ }
////foreach (var query in queries)
////{