fix grammar

This commit is contained in:
Marcell Kovács 2023-02-07 18:02:24 +01:00
parent 0a7faff2b9
commit 0ec3741ef8
No known key found for this signature in database
10 changed files with 13 additions and 13 deletions

View file

@ -77,7 +77,7 @@ class Monitor(xbmc.Monitor):
Otherwise the next played item will be added the previous queue.
'''
if method == "Player.OnStop":
xbmc.sleep(3000) # let's wait for the player so we don't clear the canceled playlist by mistake.
xbmc.sleep(3000) # let's wait for the player, so we don't clear the canceled playlist by mistake.
if xbmc.getCondVisibility("!Player.HasMedia + !Window.IsVisible(busydialog)"):
@ -247,7 +247,7 @@ class Monitor(xbmc.Monitor):
elif command == 'SetVolume':
xbmc.executebuiltin('SetVolume(%s[,showvolumebar])' % args['Volume'])
# Kodi needs a bit of time to update it's current status
# Kodi needs a bit of time to update its current status
xbmc.sleep(500)
self.player.report_playback()