mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 14:51:31 -07:00
wip
This commit is contained in:
parent
5aefaa1246
commit
a16792533a
1 changed files with 9 additions and 2 deletions
|
@ -262,7 +262,7 @@ export const pack = async (
|
|||
}
|
||||
|
||||
// Populate media
|
||||
if (_note.mediaIds) {
|
||||
if (_note.mediaIds && !hide) {
|
||||
_note.media = Promise.all(_note.mediaIds.map(fileId =>
|
||||
packFile(fileId)
|
||||
));
|
||||
|
@ -321,7 +321,7 @@ export const pack = async (
|
|||
}
|
||||
|
||||
// Poll
|
||||
if (meId && _note.poll) {
|
||||
if (meId && _note.poll && !hide) {
|
||||
_note.poll = (async (poll) => {
|
||||
const vote = await PollVote
|
||||
.findOne({
|
||||
|
@ -362,5 +362,12 @@ export const pack = async (
|
|||
// resolve promises in _note object
|
||||
_note = await rap(_note);
|
||||
|
||||
if (hide) {
|
||||
_note.mediaIds = [];
|
||||
_note.text = null;
|
||||
_note.poll = null;
|
||||
_note.isHidden = true;
|
||||
}
|
||||
|
||||
return _note;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue