1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-23 06:21:05 +00:00

Fixed EmbeddedSubtitles provider results caching

This commit is contained in:
JayZed 2024-12-09 16:32:51 -05:00 committed by GitHub
parent 137d61930d
commit a7df6a9c62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -255,8 +255,6 @@ class EmbeddedSubtitlesProvider(Provider):
class _MemoizedFFprobeVideoContainer(FFprobeVideoContainer):
# 128 is the default value for maxsize since Python 3.8. We ste it here for previous versions.
@functools.lru_cache(maxsize=128)
def get_subtitles(self, *args, **kwargs):
return super().get_subtitles(*args, **kwargs)