Fixed oauth2 controller returning invalid data. Adjusted build seps for tailwind class map

This commit is contained in:
2025-07-16 20:48:49 +02:00
parent 77abdd807d
commit 7c496b4c7f
3 changed files with 3 additions and 55 deletions

View File

@@ -66,8 +66,6 @@ public partial class OAuth2Controller : Controller
parameters.Add("RedirectUri", redirectUri);
parameters.Add("ResponseType", responseType);
});
await Response.WriteAsync(html);
}
else
{
@@ -77,12 +75,10 @@ public partial class OAuth2Controller : Controller
parameters.Add("RedirectUri", redirectUri);
parameters.Add("ResponseType", responseType);
});
await Response.WriteAsync(html);
}
await Results
.Text(html, "text/html")
.Text(html, "text/html", Encoding.UTF8)
.ExecuteAsync(HttpContext);
}
@@ -158,7 +154,7 @@ public partial class OAuth2Controller : Controller
}
await Results
.Text(html, "text/html")
.Text(html, "text/html", Encoding.UTF8)
.ExecuteAsync(HttpContext);
}
}