Skip to content

Commit

Permalink
Merge pull request #5 from misty-/master
Browse files Browse the repository at this point in the history
[upd] Ignore if '.apps.googleusercontent.com' entered in API Id string in add-on settings
  • Loading branch information
Kolifanes committed Mar 20, 2016
2 parents 2e0e840 + cf22676 commit fc74312
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.youtube" name="YouTube" version="5.1.20.4" provider-name="bromix">
<addon id="plugin.video.youtube" name="YouTube" version="5.1.20.5" provider-name="bromix">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
5.1.20.5 (2016-03-20)
[upd] Ignore if '.apps.googleusercontent.com' entered in API Id string in add-on settings

5.1.20.4 (2016-03-05)
[add] API Key in add-on settings
[upd] All string.po for new API Key functionality. New entries in language string.po files not translated from English.
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/youtube/client/login_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

addon = xbmcaddon.Addon()
api_key = addon.getSetting('youtube.api.key')
api_id = addon.getSetting('youtube.api.id')
api_id = addon.getSetting('youtube.api.id').replace('.apps.googleusercontent.com', '')
api_secret = addon.getSetting('youtube.api.secret')

# Kodi 17 support by Uukrul
Expand Down

0 comments on commit fc74312

Please sign in to comment.