소스 검색

Update Emby.Server.Implementations/Data/SqliteItemRepository.cs

formatting

Co-Authored-By: Bond-009 <bond.009@outlook.com>

Andrew Mahone 5 년 전
부모
커밋
e5b65ed034
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Emby.Server.Implementations/Data/SqliteItemRepository.cs

+ 2 - 1
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));
                 }
             }