summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-09-09 02:46:54 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-09-09 02:46:54 +0900
commit424625846e1a040a452a88c13830f97fbd40ccfc (patch)
tree56cd15d32e0eed86a62ff770fbe2d4e35ea17a47
parentUpdate README.md (diff)
parent8.33.1 (diff)
downloadmisskey-424625846e1a040a452a88c13830f97fbd40ccfc.tar.gz
misskey-424625846e1a040a452a88c13830f97fbd40ccfc.tar.bz2
misskey-424625846e1a040a452a88c13830f97fbd40ccfc.zip
Merge branch 'master' into develop
-rw-r--r--package.json2
-rw-r--r--src/models/note.ts10
2 files changed, 1 insertions, 11 deletions
diff --git a/package.json b/package.json
index 0112967b43..9323ab0ea3 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
- "version": "8.33.0",
+ "version": "8.33.1",
"clientVersion": "1.0.9497",
"codename": "nighthike",
"main": "./built/index.js",
diff --git a/src/models/note.ts b/src/models/note.ts
index 98d37caf22..181ebecf24 100644
--- a/src/models/note.ts
+++ b/src/models/note.ts
@@ -21,16 +21,6 @@ Note.createIndex('_files.contentType');
Note.createIndex({
createdAt: -1
});
-
-// 後方互換性のため
-Note.update({}, {
- $rename: {
- mediaIds: 'fileIds'
- }
-}, {
- multi: true
-});
-
export default Note;
export function isValidText(text: string): boolean {