You can keep adding the z-index
value.
#components-reconnect-modal{
z-index: 1056 !important;
}
I will update my code Then you can retry.
Wait a sec.
Great.
hi
We will fix that in the next version. Thanks.
The languages are cached by the tenant now. I think this is a problem.
hi
Try to clear the Redis. If it still does not work. Can you share a simple project?
liming.ma@volosoft.com
ok
hi
In this case, I must find a way to reproduce the problem. Do you have any ideas?
hi
Authorization failed. These requirements were not met: PermissionRequirement: Chat.Messaging
https://support.abp.io/QA/Questions/4151/Need-a-guide-about--chat--module-in-blazor-server#answer-0b74bde7-8a10-5844-7414-3a07f7806f23
Please add ChatPermissions
to current user.
And write some logs on this handle to ensure the token has been converted.
app.Use(async (httpContext, next) =>
{
var accessToken = httpContext.Request.Query["access_token"];
var path = httpContext.Request.Path;
if (!string.IsNullOrEmpty(accessToken) &&
(path.StartsWithSegments("/signalr-hubs/chat")))
{
httpContext.Request.Headers["Authorization"] = "Bearer " + accessToken;
}
await next();
});
hi
Share your logs again. Thanks.