瀏覽代碼

bitwarden: fix message string containing percents

Previously, this would barf if any of the strings in the hash table
contained percent formating symbols.
Sean Farley 8 年之前
父節點
當前提交
3bcbad26b9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bitwarden.el

+ 1 - 1
bitwarden.el

@@ -257,7 +257,7 @@ non-interactively)."
     (cond
      ((eq err 0)
       (if print-message
-          (message pass)
+          (message "%s" pass)
         pass))
      (t
       (bitwarden--message "%s" pass print-message)