[API] Fix bugs
This commit is contained in:
parent
a875f1182c
commit
9f02d2d1b8
6 changed files with 6 additions and 14 deletions
|
|
@ -36,17 +36,13 @@ module.exports = (params, me) =>
|
|||
|
||||
// Get 'with_replies' parameter
|
||||
let withReplies = params.with_replies;
|
||||
if (withReplies !== undefined && withReplies !== null && withReplies === 'true') {
|
||||
withReplies = true;
|
||||
} else {
|
||||
if (withReplies == null) {
|
||||
withReplies = false;
|
||||
}
|
||||
|
||||
// Get 'with_media' parameter
|
||||
let withMedia = params.with_media;
|
||||
if (withMedia !== undefined && withMedia !== null && withMedia === 'true') {
|
||||
withMedia = true;
|
||||
} else {
|
||||
if (withMedia == null) {
|
||||
withMedia = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue