Skip to content

Commit

Permalink
Merge pull request #10915 from pymedusa/release/release-1.0.8
Browse files Browse the repository at this point in the history
Release/release 1.0.8
  • Loading branch information
p0psicles authored Sep 6, 2022
2 parents d7b29dc + 0aff3fe commit f690170
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 58 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 1.0.8 (05-09-2022)

#### Fixes
- Catch exception when we can't translate a title to imdb_id. ([10912](https://github.com/pymedusa/Medusa/pull/10912))
- Authenticate websocket connections. ([10914](https://github.com/pymedusa/Medusa/pull/10914))

-----

## 1.0.7 (25-08-2022)

#### Improvements
Expand Down
2 changes: 1 addition & 1 deletion medusa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
log.logger.addHandler(logging.NullHandler())

INSTANCE_ID = text_type(uuid.uuid1())
VERSION = '1.0.7'
VERSION = '1.0.8'

USER_AGENT = 'Medusa/{version} ({system}; {release}; {instance})'.format(
version=VERSION, system=platform.system(), release=platform.release(),
Expand Down
2 changes: 1 addition & 1 deletion medusa/name_parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def _parse_string(self, name):
# Remove None from the list of seasons, as we can't sort on that
new_season_numbers = sorted({season for season in new_season_numbers if season is not None})

if not new_season_numbers:
if not new_season_numbers and not new_absolute_numbers:
raise InvalidNameException('The result that was found ({result_name}) is not yet supported by Medusa '
'and will be skipped. Sorry.'.format(result_name=result.original_name))

Expand Down
Loading

0 comments on commit f690170

Please sign in to comment.