Skip to content

Some images causing croppedCanvas!.JSRuntimeObjectRef.InvokeAsync<string>("toDataURL" to never return #308

Answered by kwoeste11
kwoeste11 asked this question in Q&A
Discussion options

You must be logged in to vote

found the issue. I had set the message max as was in the docs

I had

builder.Services.AddServerSideBlazor() .AddHubOptions(options => { options.MaximumReceiveMessageSize = 32 * 1024 * 100; });

Changing it to what is below solved the issue

builder.Services.AddServerSideBlazor() .AddHubOptions(options => { options.MaximumReceiveMessageSize = 1024 * 1024 * 100; });

Replies: 3 comments 11 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@MaxymGorn
Comment options

Comment options

You must be logged in to vote
10 replies
@MaxymGorn
Comment options

@kwoeste11
Comment options

@kwoeste11
Comment options

@kwoeste11
Comment options

Answer selected by MaxymGorn
@MaxymGorn
Comment options

@MaxymGorn
Comment options

@MaxymGorn
Comment options

@kwoeste11
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants