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

Fixed: Remove Plist Fix to prevent Linux Core update failures

pull/2/head
Qstick 6 years ago committed by GitHub
parent 3c380954ec
commit dd00c9b53e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -120,13 +120,6 @@ namespace NzbDrone.Update.UpdateEngine
if (OsInfo.IsOsx || (OsInfo.IsLinux && PlatformInfo.IsNetCore))
{
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Radarr"), "0755", null, null);
var plistPath = Path.Combine(installationFolder, "..", "Info.plist");
var plistContents = File.ReadAllText(plistPath);
if (plistContents.Contains("Sonarr"))
{
plistContents.Replace("Sonarr", "Radarr");
File.WriteAllText(plistPath, plistContents);
}
}
}
catch (Exception e)

Loading…
Cancel
Save