diff --git a/app/src/mobile/settings/editor.ts b/app/src/mobile/settings/editor.ts
index 4e5d80521..b9dfd0cb3 100644
--- a/app/src/mobile/settings/editor.ts
+++ b/app/src/mobile/settings/editor.ts
@@ -197,13 +197,13 @@ export const initEditor = () => {
diff --git a/kernel/model/conf.go b/kernel/model/conf.go
index 5a78f7850..905af6ecc 100644
--- a/kernel/model/conf.go
+++ b/kernel/model/conf.go
@@ -249,11 +249,11 @@ func InitConf() {
if conf.MaxDynamicLoadBlocks < Conf.Editor.DynamicLoadBlocks {
Conf.Editor.DynamicLoadBlocks = conf.MaxDynamicLoadBlocks
}
- if 0 > Conf.Editor.BacklinkExpandCount {
- Conf.Editor.BacklinkExpandCount = 0
+ if -1 > Conf.Editor.BacklinkExpandCount {
+ Conf.Editor.BacklinkExpandCount = -1
}
- if 0 > Conf.Editor.BackmentionExpandCount {
- Conf.Editor.BackmentionExpandCount = 0
+ if -1 > Conf.Editor.BackmentionExpandCount {
+ Conf.Editor.BackmentionExpandCount = -1
}
if nil == Conf.Editor.Markdown {
Conf.Editor.Markdown = &util.Markdown{}