aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-16 15:16:19 +0100
committerBond_009 <bond.009@outlook.com>2019-01-23 18:34:34 +0100
commit48da8f429e2b997c7c67f68ac4e6b67a29b06867 (patch)
treefa9b34d7628307974043213127cb14e7011a5eab
parent8d9428ebdc463dcaa02cfa8daf91ab480f2ace6a (diff)
Return a true IEnumerable
-rw-r--r--Emby.Server.Implementations/Activity/ActivityManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Activity/ActivityManager.cs b/Emby.Server.Implementations/Activity/ActivityManager.cs
index a434edd27..e504bc4d7 100644
--- a/Emby.Server.Implementations/Activity/ActivityManager.cs
+++ b/Emby.Server.Implementations/Activity/ActivityManager.cs
@@ -69,7 +69,7 @@ namespace Emby.Server.Implementations.Activity
}
}
- return result;
+ return result.AsEnumerable();
}
}
}