Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support accent-insensitive search using SQLean unicode sqlite3 extension #3199

Merged
merged 7 commits into from
Jul 28, 2024
7 changes: 2 additions & 5 deletions server/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ class Server {

await this.playbackSessionManager.removeOrphanStreams()

await this.binaryManager.init()

await Database.init(false)

await Logger.logManager.init()
Expand All @@ -128,11 +130,6 @@ class Server {
await this.cronManager.init(libraries)
this.apiCacheManager.init()

// Download ffmpeg & ffprobe if not found (Currently only in use for Windows installs)
if (global.isWin || Logger.isDev) {
await this.binaryManager.init()
}

if (Database.serverSettings.scannerDisableWatcher) {
Logger.info(`[Server] Watcher is disabled`)
this.watcher.disabled = true
Expand Down
315 changes: 0 additions & 315 deletions server/libs/ffbinaries/index.js

This file was deleted.

Loading