Fixed Addic7ed AttributeError exception with some movies #1525

This commit is contained in:
morpheus65535 2021-09-13 09:17:16 -04:00 committed by GitHub
parent b137af0908
commit 0e01c64079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class Addic7edSubtitle(_Addic7edSubtitle):
download_link, uploader=None):
super(Addic7edSubtitle, self).__init__(language, hearing_impaired, page_link, series, season, episode,
title, year, version, download_link)
self.release_info = version.replace('+', ',')
self.release_info = version.replace('+', ',') if version else None
self.uploader = uploader
def get_matches(self, video):