Enable autoConvertEmoji by default
This commit is contained in:
parent
9a283909b0
commit
a70ae1060d
2 changed files with 1 additions and 9 deletions
|
@ -978,14 +978,6 @@ export async function startApp(): Promise<void> {
|
|||
}
|
||||
}
|
||||
|
||||
if (
|
||||
window.storage.get('autoConvertEmoji') === undefined &&
|
||||
newVersion &&
|
||||
!lastVersion
|
||||
) {
|
||||
await window.storage.put('autoConvertEmoji', true);
|
||||
}
|
||||
|
||||
setAppLoadingScreenMessage(
|
||||
window.i18n('icu:optimizingApplication'),
|
||||
window.i18n
|
||||
|
|
|
@ -370,7 +370,7 @@ export function createIPCEvents(
|
|||
window.storage.get('auto-download-update', true),
|
||||
setAutoDownloadUpdate: value =>
|
||||
window.storage.put('auto-download-update', value),
|
||||
getAutoConvertEmoji: () => window.storage.get('autoConvertEmoji', false),
|
||||
getAutoConvertEmoji: () => window.storage.get('autoConvertEmoji', true),
|
||||
setAutoConvertEmoji: value => window.storage.put('autoConvertEmoji', value),
|
||||
getSentMediaQualitySetting: () =>
|
||||
window.storage.get('sent-media-quality', 'standard'),
|
||||
|
|
Loading…
Reference in a new issue