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

Fixed: Refresh backup list on deletion

(cherry picked from commit 3b00112447361b19c04851a510e63f812597a043)
pull/5320/head
Bogdan 4 months ago
parent 502cb20898
commit 4bcdc49777

@ -50,7 +50,7 @@ namespace Lidarr.Api.V1.System.Backup
}
[RestDeleteById]
public void DeleteBackup(int id)
public object DeleteBackup(int id)
{
var backup = GetBackup(id);
@ -67,6 +67,8 @@ namespace Lidarr.Api.V1.System.Backup
}
_diskProvider.DeleteFile(path);
return new { };
}
[HttpPost("restore/{id:int}")]

Loading…
Cancel
Save