diff --git a/src/Ombi.Core/Rule/Rules/Search/PlexAvailabilityRule.cs b/src/Ombi.Core/Rule/Rules/Search/PlexAvailabilityRule.cs
index 1b406cc93..f55316f2d 100644
--- a/src/Ombi.Core/Rule/Rules/Search/PlexAvailabilityRule.cs
+++ b/src/Ombi.Core/Rule/Rules/Search/PlexAvailabilityRule.cs
@@ -46,6 +46,11 @@ namespace Ombi.Core.Rule.Rules.Search
}
}
}
+
+ if (search.SeasonRequests.All(x => x.Episodes.All(e => e.Available)))
+ {
+ search.FullyAvailable = true;
+ }
}
}
}
diff --git a/src/Ombi/ClientApp/app/search/tvsearch.component.html b/src/Ombi/ClientApp/app/search/tvsearch.component.html
index 8c45e1508..c57e32fa0 100644
--- a/src/Ombi/ClientApp/app/search/tvsearch.component.html
+++ b/src/Ombi/ClientApp/app/search/tvsearch.component.html
@@ -78,8 +78,6 @@
-
-