Trying to fix the auto CP

This commit is contained in:
tidusjar 2016-09-18 17:39:57 +01:00
commit b97e8d5cf7
3 changed files with 3 additions and 2 deletions

View file

@ -35,7 +35,7 @@ namespace PlexRequests.Helpers
{
using (var md5 = MD5.Create())
{
var inputBytes = Encoding.ASCII.GetBytes(input);
var inputBytes = Encoding.UTF8.GetBytes(input);
var hash = md5.ComputeHash(inputBytes);
var sb = new StringBuilder();