mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-09 08:40:29 +03:00
Enable markdown by default
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
c828dfd596
commit
f310196937
2 changed files with 3 additions and 3 deletions
|
|
@ -79,8 +79,8 @@ class Settings extends EventEmitter {
|
|||
if (typeof this.isMarkdown === 'boolean') return this.isMarkdown;
|
||||
|
||||
const settings = getSettings();
|
||||
if (settings === null) return false;
|
||||
if (typeof settings.isMarkdown === 'undefined') return false;
|
||||
if (settings === null) return true;
|
||||
if (typeof settings.isMarkdown === 'undefined') return true;
|
||||
return settings.isMarkdown;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue