convert playback checkins to rest

This commit is contained in:
LukePulverenti
2013-02-24 21:41:51 -05:00
parent 1db7faad89
commit 2d342c02ef
6 changed files with 112 additions and 114 deletions

View File

@@ -61,7 +61,7 @@ namespace MediaBrowser.Common.Extensions
/// <returns>Guid.</returns>
public static Guid GetMD5(this string str)
{
using (var provider = new MD5CryptoServiceProvider())
using (var provider = MD5.Create())
{
return new Guid(provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
}