Fix RedirectToAction
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
linuxct 2020-07-14 12:47:02 +02:00
parent 94a58b988a
commit bd84c43ab6

View File

@ -85,7 +85,7 @@ namespace OD.WebApplication.Controllers
return new ErrorMessageResult(new ErrorResult { Exception = ex }); return new ErrorMessageResult(new ErrorResult { Exception = ex });
} }
return Ok(); return RedirectToAction("Index");
} }
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]