diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-05-03 18:33:25 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-03 18:33:25 +0900 |
| commit | 9d1ed1eb0dfce53aa0db7f33f376774b1521a5ae (patch) | |
| tree | 44aaed1fa2d22709fb5dea47aa83f357905d79b6 /src/queue/processors/db/export-blocking.ts | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-9d1ed1eb0dfce53aa0db7f33f376774b1521a5ae.tar.gz sharkey-9d1ed1eb0dfce53aa0db7f33f376774b1521a5ae.tar.bz2 sharkey-9d1ed1eb0dfce53aa0db7f33f376774b1521a5ae.zip | |
Some import and export fixes (#4842)
* Fix: Mastodon v2.8.0 のフォローリストがインポートできない
* Fix: エクスポートリクエストに失敗してもエラーが出ない (#4821)
* エクスポートファイルでは同一ハッシュチェックをしないように
Diffstat (limited to 'src/queue/processors/db/export-blocking.ts')
| -rw-r--r-- | src/queue/processors/db/export-blocking.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/processors/db/export-blocking.ts b/src/queue/processors/db/export-blocking.ts index c4b8c9438d..0504ab8c30 100644 --- a/src/queue/processors/db/export-blocking.ts +++ b/src/queue/processors/db/export-blocking.ts @@ -85,7 +85,7 @@ export async function exportBlocking(job: Bull.Job, done: any): Promise<void> { logger.succ(`Exported to: ${path}`); const fileName = 'blocking-' + dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.csv'; - const driveFile = await addFile(user, path, fileName); + const driveFile = await addFile(user, path, fileName, null, null, true); logger.succ(`Exported to: ${driveFile.id}`); cleanup(); |