Skip to content

Commit

Permalink
Merge pull request #206 from angelblue05/master
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
angelblue05 authored Feb 3, 2019
2 parents 32eaecf + f80e000 commit 712230f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.emby"
name="Emby"
version="4.0.3"
version="4.0.4"
provider-name="angelblue05">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
Expand Down Expand Up @@ -39,10 +39,9 @@
<news>
New stable release
The wiki has been updated, PLEASE READ: https://github.com/MediaBrowser/plugin.video.emby/wiki
Fix playback for Kodi Leia
Fix masterlock
Home videos and pictures now show under videos and picture add-ons
Dependencies were updated to 0.14!
Dependencies were updated to 0.14! Please keep stable updated.
Fix broken icon under report activity
Fix manual server address being ignored during setup
</news>
</extension>
</addon>
3 changes: 2 additions & 1 deletion resources/lib/emby/core/connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ def connect_to_server(self, server, options={}):

tests = []

if server.get('LastConnectionMode') is not None:

if server.get('LastConnectionMode') is not None and server.get('AccessToken'):
tests.append(server['LastConnectionMode'])

if CONNECTION_MODE['Manual'] not in tests:
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def post_capabilities(self, server):
"Mute,Unmute,SetVolume,"
"Play,Playstate,PlayNext,PlayMediaSource"
),
'IconUrl': "https://raw.githubusercontent.com/MediaBrowser/plugin.video.emby/develop/kodi_icon.png",
'IconUrl': "https://raw.githubusercontent.com/MediaBrowser/plugin.video.emby/master/kodi_icon.png",
})

session = server['api'].get_device(self.device_id)
Expand Down

0 comments on commit 712230f

Please sign in to comment.