Retry chat bulk actions after stale menu URL
This commit is contained in:
@@ -805,7 +805,8 @@ public sealed class ChatsController(
|
||||
|
||||
private static bool IsChatOpenFailure(string? error)
|
||||
{
|
||||
return error?.Contains("not found or did not open", StringComparison.OrdinalIgnoreCase) == true;
|
||||
return error?.Contains("not found or did not open", StringComparison.OrdinalIgnoreCase) == true ||
|
||||
error?.Contains("menu was not opened", StringComparison.OrdinalIgnoreCase) == true;
|
||||
}
|
||||
|
||||
private async Task<List<Chat>> LoadChatsWithAttachmentsAsync(IReadOnlyCollection<Guid> chatIds, CancellationToken cancellationToken)
|
||||
|
||||
Reference in New Issue
Block a user