aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteExtensions.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-20 14:26:49 +0100
committerBond_009 <bond.009@outlook.com>2019-06-28 12:12:54 +0200
commitcec22ad10daf7abef2f27f846e4022d5a35faccf (patch)
tree62c70f5bbf3a7dc2d997ccfc185dc77b89738a0d /Emby.Server.Implementations/Data/SqliteExtensions.cs
parentb3b08fecb29f22c9d8550b49bd2bca18c339ef7b (diff)
Simplify db code
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteExtensions.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteExtensions.cs b/Emby.Server.Implementations/Data/SqliteExtensions.cs
index a486cb1a0..c0f27b25a 100644
--- a/Emby.Server.Implementations/Data/SqliteExtensions.cs
+++ b/Emby.Server.Implementations/Data/SqliteExtensions.cs
@@ -141,7 +141,7 @@ namespace Emby.Server.Implementations.Data
}
}
- public static void Attach(ManagedConnection db, string path, string alias)
+ public static void Attach(SQLiteDatabaseConnection db, string path, string alias)
{
var commandText = string.Format("attach @path as {0};", alias);