diff options
author | tv <tv@shackspace.de> | 2015-01-31 14:49:25 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-01-31 15:13:00 +0100 |
commit | 39e76d0c83515a98f84f06b1c3b430d1e67cd1cd (patch) | |
tree | 928ddf6f729fe18c9e78858c340056c86dd855eb /Notmuch.hs | |
parent | c2c06d1d436df298cc60e3af37684de056eb2fc9 (diff) |
Notmuch: "id:" and "thread:" are part of ID
Diffstat (limited to 'Notmuch.hs')
-rw-r--r-- | Notmuch.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -179,9 +179,9 @@ notmuchShowPart term partId = do setTag :: String -> String -> IO LBS.ByteString setTag tag i = do - notmuch [ "tag", "+" <> tag , "id:" <> i ] + notmuch [ "tag", "+" <> tag , i ] unsetTag :: String -> String -> IO LBS.ByteString unsetTag tag i = do - notmuch [ "tag", "-" <> tag , "id:" <> i ] + notmuch [ "tag", "-" <> tag , i ] |