summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-04-15 20:37:29 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-04-15 20:37:29 +0900
commitc0f72970b90eeae50bf472cbd83bfebffe0fcabf (patch)
tree3b85b808158af880dcf66661fd4212982595bfad
parentランダムにアバターを生成するように (diff)
parentFollow lint (diff)
downloadsharkey-c0f72970b90eeae50bf472cbd83bfebffe0fcabf.tar.gz
sharkey-c0f72970b90eeae50bf472cbd83bfebffe0fcabf.tar.bz2
sharkey-c0f72970b90eeae50bf472cbd83bfebffe0fcabf.zip
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
-rw-r--r--src/services/drive/add-file.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/drive/add-file.ts b/src/services/drive/add-file.ts
index 54d7f2d13a..c79dfee103 100644
--- a/src/services/drive/add-file.ts
+++ b/src/services/drive/add-file.ts
@@ -209,7 +209,7 @@ async function deleteOldFile(user: IRemoteUser) {
}
if (user.bannerId) {
- q.andWhere('file.id != :bannerId', { bannerId: user.bannerId })
+ q.andWhere('file.id != :bannerId', { bannerId: user.bannerId });
}
q.orderBy('file.id', 'DESC');