Stop playBookmak from being updated when a song is paused.
This commit is contained in:
parent
7101f3fd53
commit
aa640bb4f9
@ -393,7 +393,10 @@ Configuration:
|
||||
dismissMsgDate = new Date(new Date().time + msgTimeout) } } }
|
||||
else {
|
||||
drawLeader()
|
||||
if (curMediaFile && System.currentTimeMillis() > nextBookmarkUpdate) {
|
||||
if (curMediaFile &&
|
||||
vlcj.mediaListPlayer.mediaPlayer.isPlaying() &&
|
||||
System.currentTimeMillis() > nextBookmarkUpdate) {
|
||||
|
||||
playBookmark.playTimeMs =
|
||||
vlcj.mediaListPlayer.mediaPlayer.time
|
||||
library.save(playBookmark)
|
||||
|
Loading…
Reference in New Issue
Block a user