chore: rename Jellyseerr -> Seerr, part 1 (#1984)

* chore: rename Jellyseerr -> Seerr, part 1

* chore: update Jellyfin bot name
This commit is contained in:
TheCatLady
2025-10-06 15:22:36 -07:00
committed by GitHub
parent e7aed5b594
commit 2e2d2a031b
25 changed files with 93 additions and 100 deletions

View File

@@ -192,7 +192,7 @@ class SlackAgent
type: 'actions',
elements: [
{
action_id: 'open-in-jellyseerr',
action_id: 'open-in-seerr',
type: 'button',
url,
text: {

View File

@@ -380,7 +380,7 @@ class Settings {
vapidPublic: '',
main: {
apiKey: '',
applicationTitle: 'Jellyseerr',
applicationTitle: 'Seerr',
applicationUrl: '',
cacheImages: false,
defaultPermissions: Permission.REQUEST,
@@ -447,7 +447,7 @@ class Settings {
ignoreTls: false,
requireTls: false,
allowSelfSigned: false,
senderName: 'Jellyseerr',
senderName: 'Seerr',
},
},
discord: {

View File

@@ -28,7 +28,7 @@ const migrateApiTokens = async (settings: any): Promise<AllSettings> => {
);
jellyfinClient.setUserId(admin.jellyfinUserId ?? '');
try {
const apiKey = await jellyfinClient.createApiToken('Jellyseerr');
const apiKey = await jellyfinClient.createApiToken('Seerr');
settings.jellyfin.apiKey = apiKey;
} catch {
throw new Error(

View File

@@ -44,7 +44,7 @@ export const runMigrations = async (
}
migrated = newSettings;
} catch (e) {
// we stop jellyseerr if the migration failed
// we stop Seerr if the migration failed
logger.error(
`Error while running migration '${migration}': ${e.message}`,
{
@@ -81,7 +81,7 @@ export const runMigrations = async (
await fs.writeFile(BACKUP_PATH, oldBackup.toString());
}
} catch (e) {
// we stop jellyseerr if the migration failed
// we stop Seerr if the migration failed
logger.error(
`Something went wrong while running settings migrations: ${e.message}`,
{

View File

@@ -130,7 +130,7 @@ class WatchlistSync {
switch (e.constructor) {
// During watchlist sync, these errors aren't necessarily
// a problem with Jellyseerr. Since we are auto syncing these constantly, it's
// a problem with Seerr. Since we are auto syncing these constantly, it's
// possible they are unexpectedly at their quota limit, for example. So we'll
// instead log these as debug messages.
case RequestPermissionError: