aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2019-11-05 08:19:07 -0500
committerGitHub <noreply@github.com>2019-11-05 08:19:07 -0500
commite5b65ed034c6ca0fcee9f73cc991a0962a44278f (patch)
tree535d8ce905e7f1a66a1fb14f040677d69450dc8b /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parentd33e0a4e2c59783c785c992ea0c3a31596ae3058 (diff)
Update Emby.Server.Implementations/Data/SqliteItemRepository.cs
formatting Co-Authored-By: Bond-009 <bond.009@outlook.com>
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index de95adfa1..a7e779251 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -6180,7 +6180,8 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
statement.TryBind("@AttachmentIndex", query.Index.Value);
}
- foreach (var row in statement.ExecuteQuery()) {
+ foreach (var row in statement.ExecuteQuery())
+ {
list.Add(GetMediaAttachment(row));
}
}