Skip to content

Commit

Permalink
Fix version check for videodb
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Porter committed May 23, 2014
1 parent 6547537 commit e786741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.video.giantbomb/resources/lib/videodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, path=None):
"""

if path is None:
if xbmc.__version__ == '1.4':
if xbmc.__version__ == '2.0':
path = 'special://profile/Database/MyVideos75.db'
elif xbmc.__version__ == '2.14.0':
path = 'special://profile/Database/MyVideos78.db'
Expand Down

0 comments on commit e786741

Please sign in to comment.