mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-29 08:10:51 +02:00
Fixed: Delete CustomFilters not handled properly
This commit is contained in:
parent
b7b5a6e7e1
commit
ddcef3a99c
1 changed files with 3 additions and 1 deletions
|
|
@ -47,9 +47,11 @@ public ActionResult<CustomFilterResource> UpdateCustomFilter(CustomFilterResourc
|
|||
}
|
||||
|
||||
[RestDeleteById]
|
||||
public void DeleteCustomResource(int id)
|
||||
public object DeleteCustomResource(int id)
|
||||
{
|
||||
_customFilterService.Delete(id);
|
||||
|
||||
return new { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue