Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/31d8d2419ae9671aba7b5c8a1a2ea1e0a768e63a?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Refresh backup list on deletion

Fixes 
pull/2304/head
Bogdan 1 month ago
parent d29ccd7749
commit 31d8d2419a

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

Loading…
Cancel
Save