]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix imap notifications
authorMatsievskiy S.V <matsievskiysv@gmail.com>
Wed, 28 Nov 2018 14:17:08 +0000 (17:17 +0300)
committerMatsievskiy S.V <matsievskiysv@gmail.com>
Wed, 28 Nov 2018 14:17:08 +0000 (17:17 +0300)
widget/imap.lua

index 3f4d9ccfde8aa14f330f2bfbb61670b25ebab6f1..75270f1d3d1780b42f194d2f221dd52f20139195 100644 (file)
@@ -68,7 +68,6 @@ local function factory(args)
 
             for s, d in f:gmatch("(%w+)%s+(%d+)") do imap_now[s] = tonumber(d) end
             mailcount = imap_now["UNSEEN"] -- backwards compatibility
 
             for s, d in f:gmatch("(%w+)%s+(%d+)") do imap_now[s] = tonumber(d) end
             mailcount = imap_now["UNSEEN"] -- backwards compatibility
-            helpers.set_map(mail, mailcount)
             widget = imap.widget
 
             settings()
             widget = imap.widget
 
             settings()
@@ -80,6 +79,7 @@ local function factory(args)
                     text   = string.format("%s has <b>%d</b> new message%s", mail, mailcount, mailcount == 1 and "" or "s")
                 }
             end
                     text   = string.format("%s has <b>%d</b> new message%s", mail, mailcount, mailcount == 1 and "" or "s")
                 }
             end
+            helpers.set_map(mail, mailcount)
         end)
 
     end
         end)
 
     end