Hi @alexanderpilhar
Thanks for reporting, we will make it available for download as soon as possible.
Hi @sharadkpatil
I tested in fresh project and it is working. Could you reproduce in new project?
Hi @japnolt
The UserAccount table is also used for batch notification. https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Application/Notifications/SendNotificationToAllUsersBackgroundJob.cs
Hi @visility
Could you check the logo img class, it should be h-25px header-brand-logo-default
Hi @junior1986
Could you try to reset your cookies and caches, and log in again?
Hi @mgc ,
We are working on it, we will try to give an answer as soon as possible
Hi @BarcodesGroup,
It's reported at https://github.com/aspnetzero/aspnet-zero-core/issues/4654
The temporary solution is here https://github.com/aspnetzero/aspnet-zero-core/issues/4654#issuecomment-1333954318
We will update Power Tools as soon as possible, until then you can solve your problem by using it like in this branch. https://github.com/murphymj5209/MorthoTest/tree/fix-powertools
Hi, @murphymj5209
I find the problem and it will be fixed asap. You can follow this issue https://github.com/aspnetzero/aspnet-zero-core/issues/4654
Hi @mgc
I tried to subscribe getChatMessage
at signalr-chat hub. I can send and receive messages from Angular to Xamarin app. I hope this code helps to you.
public async Task<bool> ConnectAsync()
{
ChatConnection.On<ChatMessageDto>("getChatMessage", (result) =>
{
Console.WriteLine("Helo");
});
try
{
if (ChatConnection.State == HubConnectionState.Connected)
{
return true;
}
if (_isConnecting)
{
return false;
}
_isConnecting = true;
await ChatConnection.StartAsync();
Console.WriteLine(@"Connected!");
return true;
}
catch (Exception ex)
{
ExceptionHandler.LogException(ex);
return false;
}
finally
{
_isConnecting = false;
}
}
public async Task<bool> SendMessageAsync(string message)
{
if (!await ConnectAsync())
{
return false;
}
try
{
var messageData = new SendChatMessageInput
{
TenantId = 1,
UserId = 2,
Message = message,
};
var response = await ChatConnection.InvokeAsync<string>("SendMessage", messageData);
if (string.IsNullOrEmpty(response))
{
Console.WriteLine(@"Message successfully sent!");
return true;
}
Console.WriteLine(@"Message failed to send: " + response);
return true;
}
catch (Exception ex)
{
ExceptionHandler.LogException(ex);
return false;
}
}