Skip to content
Snippets Groups Projects
Commit b7c2f6b5 authored by Benedikt Heinrichs's avatar Benedikt Heinrichs
Browse files

Fix: No Endless loop from logout

parent bf6715b8
Branches
Tags
No related merge requests found
......@@ -55,6 +55,10 @@ namespace Coscine.Api.STS.Controllers
// Will redirect to root/home page
ViewBag.Redirect = "/";
}
if (string.IsNullOrWhiteSpace(ViewBag.Redirect))
{
ViewBag.Redirect = "/";
}
}
var dictionary = new Dictionary<string, string>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment