mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 18:25:44 +01:00
fix: Avoid opening read connections without mutexes
This commit is contained in:
parent
2e4dd02f76
commit
09b8cde6aa
1 changed files with 2 additions and 2 deletions
|
|
@ -103,8 +103,8 @@ namespace Emby.Server.Implementations.Data
|
|||
{
|
||||
if (readOnly)
|
||||
{
|
||||
ReadConnection ??= SQLite3.Open(DbFilePath, DefaultConnectionFlags | ConnectionFlags.ReadOnly, null);
|
||||
return new ManagedConnection(ReadConnection, null);
|
||||
ReadConnection ??= SQLite3.Open(DbFilePath, ConnectionFlags.ReadOnly, null);
|
||||
return new ManagedConnection(ReadConnection, null!);
|
||||
}
|
||||
|
||||
WriteLock.Wait();
|
||||
|
|
|
|||
Loading…
Reference in a new issue