aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Security
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 19:57:21 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 19:57:21 -0400
commit25312d7d03af665818cfd2cee2edb549e0e940f2 (patch)
tree2220b08d58fb36b0b581a60cdc167d72e628b916 /Emby.Server.Implementations/Security
parent67ad1db6b77b2c2cb6d81c22808d99564a5f3ebc (diff)
add udp error handling
Diffstat (limited to 'Emby.Server.Implementations/Security')
-rw-r--r--Emby.Server.Implementations/Security/MBLicenseFile.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Security/MBLicenseFile.cs b/Emby.Server.Implementations/Security/MBLicenseFile.cs
index 454ee6026..7cb6165a5 100644
--- a/Emby.Server.Implementations/Security/MBLicenseFile.cs
+++ b/Emby.Server.Implementations/Security/MBLicenseFile.cs
@@ -124,9 +124,17 @@ namespace Emby.Server.Implementations.Security
//the rest of the lines should be pairs of features and timestamps
for (var i = 2; i < contents.Length; i = i + 2)
{
- var feat = Guid.Parse(contents[i]);
+ var line = contents[i];
+ if (string.IsNullOrWhiteSpace(line))
+ {
+ continue;
+ }
- SetUpdateRecord(feat, new DateTime(Convert.ToInt64(contents[i + 1])));
+ Guid feat;
+ if (Guid.TryParse(line, out feat))
+ {
+ SetUpdateRecord(feat, new DateTime(Convert.ToInt64(contents[i + 1])));
+ }
}
}
}