|
|
@ -58,9 +58,9 @@ namespace Emby.Server.Implementations.Activity
|
|
|
|
throw new ArgumentNullException("entry");
|
|
|
|
throw new ArgumentNullException("entry");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
using (var connection = CreateConnection())
|
|
|
|
using (WriteLock.Write())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
using (WriteLock.Write())
|
|
|
|
using (var connection = CreateConnection())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
connection.RunInTransaction(db =>
|
|
|
|
connection.RunInTransaction(db =>
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -86,9 +86,9 @@ namespace Emby.Server.Implementations.Activity
|
|
|
|
|
|
|
|
|
|
|
|
public QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit)
|
|
|
|
public QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
using (var connection = CreateConnection(true))
|
|
|
|
using (WriteLock.Read())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
using (WriteLock.Read())
|
|
|
|
using (var connection = CreateConnection(true))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var commandText = BaseActivitySelectText;
|
|
|
|
var commandText = BaseActivitySelectText;
|
|
|
|
var whereClauses = new List<string>();
|
|
|
|
var whereClauses = new List<string>();
|
|
|
|