From 33a54fc89af7957c2e391e68715c8e9ac398b59f Mon Sep 17 00:00:00 2001 From: DieselTech <30128380+DieselTech@users.noreply.github.com> Date: Mon, 5 Feb 2024 21:13:02 -0500 Subject: [PATCH] my vscode ate it added back the ' in the sqlite3 sql statement --- pages/installation/native.mdx | 1 - pages/troubleshooting/faq.mdx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pages/installation/native.mdx b/pages/installation/native.mdx index 89744ea..148c672 100644 --- a/pages/installation/native.mdx +++ b/pages/installation/native.mdx @@ -1,4 +1,3 @@ -import { SYSTEM_ENTRYPOINTS } from 'next/dist/shared/lib/constants' import { Callout } from 'nextra-theme-docs' import { Steps } from 'nextra/components' import { Tabs } from 'nextra/components' diff --git a/pages/troubleshooting/faq.mdx b/pages/troubleshooting/faq.mdx index 05bd20d..24ab7e2 100644 --- a/pages/troubleshooting/faq.mdx +++ b/pages/troubleshooting/faq.mdx @@ -20,7 +20,7 @@ A. This can happen on some configurations. An easy solution is to turn on WAL mo For CLI users you can run the command below if your platform has the needed sqlite3 tools installed. ```bash copy -sqlite3 kavita.db 'PRAGMA journal_mode=WAL; +sqlite3 kavita.db 'PRAGMA journal_mode=WAL;' ``` #### Q. Is there an app? I don't want to use the website.