소스 검색

fix: nav items expect to be of type array (#6813)

Co-authored-by: Mangaokaku <davidmartin@vt.edu>
MangaOtaku 1 년 전
부모
커밋
f0bb48c9c8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/models/sites.mjs

+ 1 - 1
server/models/sites.mjs

@@ -152,7 +152,7 @@ export class Site extends Model {
     await WIKI.db.navigation.query().insert({
       id: newSite.id,
       siteId: newSite.id,
-      items: JSON.stringify([])
+      items: []
     })
 
     WIKI.logger.debug(`Creating new DB storage for site ${newSite.id}`)