1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-20 23:30:05 +02:00
Files
joplin/packages/lib/migrations/33.js

14 lines
260 B
JavaScript
Raw Normal View History

const SearchEngine = require('../services/searchengine/SearchEngine').default;
const script = {};
script.exec = async function() {
2021-06-26 18:18:10 +01:00
try {
await SearchEngine.instance().rebuildIndex();
} catch {
// Probably running tests.
}
};
module.exports = script;