aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2025-01-26 16:54:53 +0100
committerGitHub <noreply@github.com>2025-01-26 16:54:53 +0100
commitab124bec886d90ae46c08d47922e3f080f9bd217 (patch)
treedd45972fb5afb13dabd4e8497c467ee29f3a9d9e /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
parent8b180aca3a801f2c8218798dbc47313c1265d171 (diff)
parentc877ffa5ad0e07d355fee15c2192a89b507a6577 (diff)
Merge pull request #13436 from luzpaz/typos
Fix various typos
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs')
-rw-r--r--Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
index d0360a56d..632ff9307 100644
--- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
+++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
@@ -321,7 +321,7 @@ public class MigrateLibraryDb : IMigrationRoutine
if (dbContext.Database.IsSqlite())
{
- _logger.LogInformation("Vaccum and Optimise jellyfin.db now.");
+ _logger.LogInformation("Vacuum and Optimise jellyfin.db now.");
dbContext.Database.ExecuteSqlRaw("PRAGMA optimize");
dbContext.Database.ExecuteSqlRaw("VACUUM");
_logger.LogInformation("jellyfin.db optimized successfully!");