mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
16 lines
334 B
C#
16 lines
334 B
C#
namespace NzbDrone.Common.Http
|
|
{
|
|
public static class UserAgentParser
|
|
{
|
|
public static string SimplifyUserAgent(string userAgent)
|
|
{
|
|
if (userAgent == null || userAgent.StartsWith("Mozilla/5.0"))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return userAgent;
|
|
}
|
|
}
|
|
}
|