diff options
author | Brandon Bowlby <cdsboy@cdsboy.com> | 2012-03-01 19:34:18 -0600 |
---|---|---|
committer | Brandon Bowlby <cdsboy@cdsboy.com> | 2012-03-01 19:34:18 -0600 |
commit | f755552fdb3d5a80ed41cbff307ebf8b79b262b3 (patch) | |
tree | 8a5c64e20c4cb84e7cbb2ea55e3fc7bb67415052 | |
parent | 6bbdbd9f413b0da9952f03229449e5c7e832ad4c (diff) | |
download | awesompd-f755552fdb3d5a80ed41cbff307ebf8b79b262b3.tar.gz awesompd-f755552fdb3d5a80ed41cbff307ebf8b79b262b3.tar.bz2 |
don't report bug if mpd is updating its database
-rw-r--r-- | awesompd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awesompd.lua b/awesompd.lua index 9a17d97..a9e38a6 100644 --- a/awesompd.lua +++ b/awesompd.lua @@ -909,7 +909,7 @@ function awesompd:update_track(file) self.recreate_menu = true self:update_widget_text() end - if string.find(track_line,"volume:") then + if string.find(track_line,"volume:") or string.find(track_line,"Updating DB") then if self.status ~= awesompd.STOPPED then self.status = awesompd.STOPPED self.current_number = 0 |