Another round of bugfixes (#3707)

This commit is contained in:
Joe Milazzo
2025-04-06 13:14:04 -05:00
committed by GitHub
parent cbb97208b8
commit 93dc6534fc
32 changed files with 412 additions and 335 deletions
+2 -1
View File
@@ -151,7 +151,8 @@ public class SettingsController : BaseApiController
try
{
return Ok(await _settingsService.UpdateSettings(updateSettingsDto));
var d = await _settingsService.UpdateSettings(updateSettingsDto);
return Ok(d);
}
catch (KavitaException ex)
{