Update PlayToManager.cs

Fixed name violation
This commit is contained in:
BaronGreenback 2020-09-08 09:27:44 +01:00 committed by GitHub
parent fde5afc36b
commit c84aabe954
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,19 +132,19 @@ namespace Emby.Dlna.PlayTo
private static string GetUuid(string usn)
{
const string uuidStr = "uuid:";
const string uuidColonStr = "::";
const string UuidStr = "uuid:";
const string UuidColonStr = "::";
var index = usn.IndexOf(uuidStr, StringComparison.OrdinalIgnoreCase);
var index = usn.IndexOf(UuidStr, StringComparison.OrdinalIgnoreCase);
if (index != -1)
{
return usn.Substring(index + uuidStr.Length);
return usn.Substring(index + UuidStr.Length);
}
index = usn.IndexOf(uuidColonStr, StringComparison.OrdinalIgnoreCase);
index = usn.IndexOf(UuidColonStr, StringComparison.OrdinalIgnoreCase);
if (index != -1)
{
usn = usn.Substring(0, index + uuidColonStr.Length);
usn = usn.Substring(0, index + UuidColonStr.Length);
}
return usn.GetMD5().ToString("N", CultureInfo.InvariantCulture);