Use sane IDs for XBMC JSON RPC calls

This commit is contained in:
Mark McDowall
2014-06-08 23:03:23 -07:00
parent 052a3bf47e
commit 61ec9aff27
2 changed files with 2 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
postJson.Add(new JProperty("params", parameters));
}
postJson.Add(new JProperty("id", DateTime.Now.Ticks));
postJson.Add(new JProperty("id", 2));
return postJson;
}