diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-16 15:23:03 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-16 15:23:03 +0900 |
| commit | 9cac293efc5433f6a2efc7ec7ae3f5244bcfbd0d (patch) | |
| tree | b56ffaea869314c44e839a7976d901bdfa202da3 /src/server/api/endpoints/notes | |
| parent | npm install --only=dev するのが既存のドキュメントと互換性が... (diff) | |
| download | sharkey-9cac293efc5433f6a2efc7ec7ae3f5244bcfbd0d.tar.gz sharkey-9cac293efc5433f6a2efc7ec7ae3f5244bcfbd0d.tar.bz2 sharkey-9cac293efc5433f6a2efc7ec7ae3f5244bcfbd0d.zip | |
#1708
Diffstat (limited to 'src/server/api/endpoints/notes')
| -rw-r--r-- | src/server/api/endpoints/notes/search_by_tag.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/notes/search_by_tag.ts b/src/server/api/endpoints/notes/search_by_tag.ts index 4cf070f4ce..1eb4cde49c 100644 --- a/src/server/api/endpoints/notes/search_by_tag.ts +++ b/src/server/api/endpoints/notes/search_by_tag.ts @@ -101,7 +101,7 @@ async function search( let q: any = { $and: [{ - tags: tag + tagsLower: tag.toLowerCase() }] }; |