mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import Setting from '@joplin/lib/models/Setting';
|
|
import bridge from './bridge';
|
|
|
|
|
|
export default async (linuxSafeRestart = true) => {
|
|
Setting.setValue('wasClosedSuccessfully', true);
|
|
await Setting.saveAll();
|
|
|
|
bridge().restart(linuxSafeRestart);
|
|
};
|