Browse Source

Return a true IEnumerable

Bond_009 6 years ago
parent
commit
48da8f429e
1 changed files with 1 additions and 1 deletions
  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();
         }
         }
     }
     }
 }
 }