We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When calling setProgress with a large number that is valid in Dart code (because Dart int is always 64 bit), the application will crash.
setProgress
int
Reproduction:
await WindowsTaskbar.setProgress(0, 2147483647 + 1);
Relevant code line:
windows_taskbar/windows/windows_taskbar.cc
Line 42 in f2f28ea
Either scale down the input data on Dart side, or on native side. For example, I've scaled it down on Dart side: localsend/localsend#1512
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling
setProgress
with a large number that is valid in Dart code (because Dartint
is always 64 bit), the application will crash.Reproduction:
Relevant code line:
windows_taskbar/windows/windows_taskbar.cc
Line 42 in f2f28ea
Either scale down the input data on Dart side, or on native side. For example, I've scaled it down on Dart side: localsend/localsend#1512
The text was updated successfully, but these errors were encountered: