diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-06-10 12:45:04 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-06-10 12:45:04 -0400 |
| commit | 3ba9d3c12f71208cb45d58b93b7c472780a5d541 (patch) | |
| tree | cfdb82a1ef3201dcee871571224479f53386c1cd /MediaBrowser.ServerApplication/Native/DbConnector.cs | |
| parent | b0c1ba1e1961783975a5231f801733553bee9faf (diff) | |
update channel mapping
Diffstat (limited to 'MediaBrowser.ServerApplication/Native/DbConnector.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/Native/DbConnector.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/Native/DbConnector.cs b/MediaBrowser.ServerApplication/Native/DbConnector.cs index 48ba7d0e7..6001ac3c0 100644 --- a/MediaBrowser.ServerApplication/Native/DbConnector.cs +++ b/MediaBrowser.ServerApplication/Native/DbConnector.cs @@ -16,11 +16,11 @@ namespace MediaBrowser.ServerApplication.Native _logger = logger; } - public async Task<IDbConnection> Connect(string dbPath) + public async Task<IDbConnection> Connect(string dbPath, int? cacheSize = null) { try { - return await SqliteExtensions.ConnectToDb(dbPath, _logger).ConfigureAwait(false); + return await SqliteExtensions.ConnectToDb(dbPath, cacheSize, _logger).ConfigureAwait(false); } catch (Exception ex) { |
