Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions docs/docs/community-guides.mdx

This file was deleted.

12 changes: 0 additions & 12 deletions docs/docs/community-projects.mdx

This file was deleted.

1 change: 0 additions & 1 deletion docs/docs/features/mobile-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { mdiCloudOffOutline, mdiCloudCheckOutline } from '@mdi/js';
import MobileAppDownload from '/docs/partials/_mobile-app-download.md';
import MobileAppLogin from '/docs/partials/_mobile-app-login.md';
import MobileAppBackup from '/docs/partials/_mobile-app-backup.md';
import { cloudDonePath, cloudOffPath } from '@site/src/components/svg-paths';

# Mobile App

Expand Down
108 changes: 0 additions & 108 deletions docs/src/components/community-guides.tsx

This file was deleted.

158 changes: 0 additions & 158 deletions docs/src/components/community-projects.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions docs/src/components/svg-paths.ts

This file was deleted.

6 changes: 4 additions & 2 deletions docs/static/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
/administration/password-login /administration/system-settings 307
/features/search /features/searching 307
/features/smart-search /features/searching 307
/guides/api-album-sync /community-projects 307
/guides/remove-offline-files /community-projects 307
/guides/api-album-sync https://awesome.immich.app/ 307
/guides/remove-offline-files https://awesome.immich.app/ 307
/community-guides https://awesome.immich.app/ 307
/community-projects https://awesome.immich.app/ 307
/overview/introduction /overview/quick-start 307
/overview/welcome /overview/quick-start 307
/docs/* /:splat 307
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export async function up(db: Kysely<any>): Promise<void> {
rows: [lastMigration],
} = await lastMigrationSql.execute(db);
if (lastMigration?.name !== 'AddMissingIndex1744910873956') {
throw new Error('Invalid upgrade path. For more information, see https://immich.app/errors#typeorm-upgrade');
throw new Error(
'Invalid upgrade path. For more information, see https://docs.immich.app/errors/#typeorm-upgrade',
);
}
logger.log('Database has up to date TypeORM migrations, skipping initial Kysely migration');
return;
Expand Down
2 changes: 1 addition & 1 deletion server/src/services/storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class StorageService extends BaseService {

if (!path.startsWith(previous)) {
throw new Error(
'Detected an inconsistent media location. For more information, see https://immich.app/errors#inconsistent-media-location',
'Detected an inconsistent media location. For more information, see https://docs.immich.app/errors#inconsistent-media-location',
);
}

Expand Down
Loading