Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/c36a4ba2b8df05873f5dfd0946a9bc3dc4ecfd1d You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix: logger was set to info for the wrong logs ()

pull/3356/head
Brandon Cohen 2 years ago committed by GitHub
parent ae3818304b
commit c36a4ba2b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -601,7 +601,7 @@ class AvailabilitySync {
//if true, media exists in at least one radarr or plex instance.
if (existsInRadarr) {
logger.info(
logger.warn(
`${media.tmdbId} exists in at least one radarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',
@ -621,7 +621,7 @@ class AvailabilitySync {
//if true, media exists in at least one sonarr or plex instance.
if (existsInSonarr) {
logger.info(
logger.warn(
`${media.tvdbId} exists in at least one sonarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',
@ -685,7 +685,7 @@ class AvailabilitySync {
);
if (existsInSonarr) {
logger.info(
logger.warn(
`${media.tvdbId}, season: ${season.seasonNumber} exists in at least one sonarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',

Loading…
Cancel
Save