Skip to content
Snippets Groups Projects
Unverified Commit 8263cc00 authored by CaffeeLake's avatar CaffeeLake Committed by GitHub
Browse files

Fix: #10955 TypeError: JSON5.parse is not a function (#10956)


* Fix: JSON5.parse is not a function

* update changelog

* update chglog

---------

Co-authored-by: default avatartamaina <tamaina@hotmail.co.jp>
parent fa051a2a
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,11 @@
-->
## 13.13.1 (unreleased)
### Server
- Fix: api/metaで`TypeError: JSON5.parse is not a function`エラーが発生する問題を修正
## 13.13.0
### General
......
import { IsNull, LessThanOrEqual, MoreThan } from 'typeorm';
import { Inject, Injectable } from '@nestjs/common';
import * as JSON5 from 'json5';
import JSON5 from 'json5';
import type { AdsRepository, UsersRepository } from '@/models/index.js';
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
import { Endpoint } from '@/server/api/endpoint-base.js';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment