Fix late settings loading

pull/969/head
Zef Hemel 2024-07-20 06:25:04 +02:00
parent e2cb2ab6e7
commit c81237d93c
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ function keyBindingForQuote(
}
export function createSmartQuoteKeyBindings(client: Client): KeyBinding[] {
if (client.settings.useSmartQuotes === false) {
if (client.settings?.useSmartQuotes === false) {
return [];
}