소스 검색

resolve incorrect field saving

Luke Pulverenti 8 년 전
부모
커밋
985c9111cf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Emby.Server.Implementations/Data/SqliteItemRepository.cs

+ 1 - 1
Emby.Server.Implementations/Data/SqliteItemRepository.cs

@@ -864,7 +864,7 @@ namespace Emby.Server.Implementations.Data
             if (topParent != null)
             if (topParent != null)
             {
             {
                 //Logger.Debug("Item {0} has top parent {1}", item.Id, topParent.Id);
                 //Logger.Debug("Item {0} has top parent {1}", item.Id, topParent.Id);
-                saveItemStatement.TryBind("@IsFolder", topParent.Id.ToString("N"));
+                saveItemStatement.TryBind("@TopParentId", topParent.Id.ToString("N"));
             }
             }
             else
             else
             {
             {