mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
7480ebea85
Fixes #281
11 lines
223 B
C#
11 lines
223 B
C#
using System.Linq;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.IndexerProxies
|
|
{
|
|
public class IndexerProxyDefinition : ProviderDefinition
|
|
{
|
|
public override bool Enable => Tags.Any();
|
|
}
|
|
}
|