mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01:00
[API] Fix bug
This commit is contained in:
parent
da63610edd
commit
ebdfc1e983
@ -53,8 +53,6 @@ module.exports = (params, user, app) =>
|
||||
let media = params.media_ids;
|
||||
let files = [];
|
||||
if (media !== undefined && media !== null) {
|
||||
media = media.split(',');
|
||||
|
||||
if (media.length > maxMediaCount) {
|
||||
return rej('too many media');
|
||||
}
|
||||
|
13
test/api.js
13
test/api.js
@ -220,6 +220,19 @@ describe('API', () => {
|
||||
});
|
||||
}));
|
||||
|
||||
it('ファイルを添付できる', () => new Promise(async (done) => {
|
||||
const me = await insertSakurako();
|
||||
const file = await insertDriveFile();
|
||||
request('/posts/create', {
|
||||
media_ids: [file._id.toString()]
|
||||
}, me).then(res => {
|
||||
res.should.have.status(200);
|
||||
res.body.should.be.a('object');
|
||||
res.body.should.have.property('media_ids').eql([file._id.toString()]);
|
||||
done();
|
||||
});
|
||||
}));
|
||||
|
||||
it('返信できる', () => new Promise(async (done) => {
|
||||
const hima = await insertHimawari();
|
||||
const himaPost = await db.get('posts').insert({
|
||||
|
Loading…
Reference in New Issue
Block a user