mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 15:36:44 -06:00
17 lines
287 B
TypeScript
17 lines
287 B
TypeScript
|
export default function(note) {
|
||
|
if (note.text == null) return true;
|
||
|
|
||
|
let txt = note.text;
|
||
|
|
||
|
if (note.media) {
|
||
|
note.media.forEach(file => {
|
||
|
txt = txt.replace(file.url, '');
|
||
|
if (file.src) txt = txt.replace(file.src, '');
|
||
|
});
|
||
|
|
||
|
if (txt == '') return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|