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

fix plugin uninstall

pull/1154/head
Luke Pulverenti 8 years ago
parent 1867fe2e51
commit 992ad9c2d9

@ -668,7 +668,7 @@ namespace Emby.Server.Implementations.Updates
_logger.Info("Deleting plugin file {0}", path);
// Make this case-insensitive to account for possible incorrect assembly naming
var file = _fileSystem.GetFilePaths(path)
var file = _fileSystem.GetFilePaths(_fileSystem.GetDirectoryName(path))
.FirstOrDefault(i => string.Equals(i, path, StringComparison.OrdinalIgnoreCase));
if (!string.IsNullOrWhiteSpace(file))

Loading…
Cancel
Save