aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Activity/ActivityRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-07 16:02:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-07 16:02:32 -0400
commit1dab9a60f4a2115f15df14b235c5ca64203be811 (patch)
tree20a7be1595ebdfe9488ffd16dab83eda2be3d687 /Emby.Server.Implementations/Activity/ActivityRepository.cs
parentefc678863684c9ef4f739aed0ced087ba1d6b4c6 (diff)
rename methods
Diffstat (limited to 'Emby.Server.Implementations/Activity/ActivityRepository.cs')
-rw-r--r--Emby.Server.Implementations/Activity/ActivityRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Activity/ActivityRepository.cs b/Emby.Server.Implementations/Activity/ActivityRepository.cs
index bf8835846..e9b6f7a40 100644
--- a/Emby.Server.Implementations/Activity/ActivityRepository.cs
+++ b/Emby.Server.Implementations/Activity/ActivityRepository.cs
@@ -60,7 +60,7 @@ namespace Emby.Server.Implementations.Activity
{
using (var statement = db.PrepareStatement("replace into ActivityLogEntries (Id, Name, Overview, ShortOverview, Type, ItemId, UserId, DateCreated, LogSeverity) values (@Id, @Name, @Overview, @ShortOverview, @Type, @ItemId, @UserId, @DateCreated, @LogSeverity)"))
{
- statement.TryBind("@Id", entry.Id.ToGuidParamValue());
+ statement.TryBind("@Id", entry.Id.ToGuidBlob());
statement.TryBind("@Name", entry.Name);
statement.TryBind("@Overview", entry.Overview);
@@ -168,7 +168,7 @@ namespace Emby.Server.Implementations.Activity
var info = new ActivityLogEntry
{
- Id = reader[index].ReadGuid().ToString("N")
+ Id = reader[index].ReadGuidFromBlob().ToString("N")
};
index++;