mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
12 lines
266 B
C#
12 lines
266 B
C#
using SharpRaven.Data;
|
|
|
|
namespace NzbDrone.Common.Instrumentation.Sentry
|
|
{
|
|
public class MachineNameUserFactory : ISentryUserFactory
|
|
{
|
|
public SentryUser Create()
|
|
{
|
|
return new SentryUser(HashUtil.AnonymousToken());
|
|
}
|
|
}
|
|
} |