forked from FoundKeyGang/FoundKey
🖌
This commit is contained in:
parent
703376841a
commit
760b90a84b
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ interface ISend {
|
||||||
function thumbnail(data: stream.Readable, type: string, resize: number): ISend {
|
function thumbnail(data: stream.Readable, type: string, resize: number): ISend {
|
||||||
const readable: stream.Readable = (() => {
|
const readable: stream.Readable = (() => {
|
||||||
// 動画か画像であれば
|
// 動画か画像であれば
|
||||||
if (/^(?:video|image)\/.*$/.test(type)) {
|
if (/^(?:video|image)\/.*$/.test(type) || type == 'application/xml') {
|
||||||
// 0フレーム目を送る
|
// 0フレーム目を送る
|
||||||
try {
|
try {
|
||||||
return gm(data).selectFrame(0).stream();
|
return gm(data).selectFrame(0).stream();
|
||||||
|
|
Loading…
Reference in a new issue