mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-08-01 11:06:07 -04:00
fix sending anonymous comments
This commit is contained in:
parent
5eebd27e82
commit
c22537c979
4 changed files with 5 additions and 4 deletions
|
@ -4099,7 +4099,7 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
|
|||
DiscussionViewer.addComment(
|
||||
comment,
|
||||
CryptTool.decipher(key, password, comment.data),
|
||||
CryptTool.decipher(key, password, comment.meta.nickname)
|
||||
comment.meta.nickname ? CryptTool.decipher(key, password, comment.meta.nickname) : ''
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue