Add another size to the blacklist
[rhynodge.git] / src / main / kotlin / net / pterodactylus / rhynodge / filters / SizeBlacklistFilter.kt
index 57df9a9..d982655 100644 (file)
@@ -8,7 +8,7 @@ import net.pterodactylus.rhynodge.states.TorrentState
 /**
  * Blacklist that filters torrents with a certain size.
  */
-class SizeBlacklistFilter(private val blacklistedSizes: Iterable<String> = listOf("313.97 MiB", "331.97 MiB", "716.05 MiB")): Filter {
+class SizeBlacklistFilter(private val blacklistedSizes: Iterable<String> = listOf("313.97 MiB", "331.97 MiB", "716.05 MiB", "314.21 MiB")): Filter {
 
        override fun filter(state: State): State {
                val torrentState = state as? TorrentState ?: return FailedState()