Skip to content

Commit

Permalink
- version 0.8.9.14 (0.9-beta11)
Browse files Browse the repository at this point in the history
- fixing typo in player.py
  • Loading branch information
s-n-g committed Feb 13, 2022
1 parent b213f48 commit 6fd0f04
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
2022-0213 s-n-g
2022-02-14 s-n-g
* version 0.8.9.14 (0.9-beta11)
* fixing typo in player.py

2022-02-13 s-n-g
* version 0.8.9.13 (0.9-beta10)
* fixing #148
* fixing a potential psutil crash
Expand Down
6 changes: 5 additions & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
<h2 id="changelog">Changelog <span style="padding-left: 10px;"><sup style="font-size: 50%"><a href="#" title="Go to top of the page">Top</a></sup></style></h2>
<pre style="height: 200px;">

2022-0213 s-n-g
2022-02-14 s-n-g
* version 0.8.9.14 (0.9-beta11)
* fixing typo in player.py

2022-02-13 s-n-g
* version 0.8.9.13 (0.9-beta10)
* fixing #148
* fixing a potential psutil crash
Expand Down
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" pyradio -- Console radio player. "

version_info = (0, 8, 9, 13)
version_info = (0, 8, 9, 14)

# Application state:
# New stable version: ''
Expand Down
2 changes: 1 addition & 1 deletion pyradio/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ def _get_mpv_metadata(self, *args):

a_data = args[0]
stop = args[1]
enable_crash_detection_function = [2]
enable_crash_detection_function = args[2]
if b'"icy-title":"' in a_data:
if version_info > (3, 0):
title = a_data.split(b'"icy-title":"')[1].split(b'"}')[0]
Expand Down

0 comments on commit 6fd0f04

Please sign in to comment.