Browse Source

Return a true IEnumerable

Bond_009 6 năm trước cách đây
mục cha
commit
48da8f429e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Emby.Server.Implementations/Activity/ActivityManager.cs

+ 1 - 1
Emby.Server.Implementations/Activity/ActivityManager.cs

@@ -69,7 +69,7 @@ namespace Emby.Server.Implementations.Activity
                 }
             }
 
-            return result;
+            return result.AsEnumerable();
         }
     }
 }