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
DEPRECATED Implicit conversion from float 35.56666666666667 to int loses precision in app/Extensions/helper/helpers.php on line 259.
Called here:
newznab-tmux/Blacklight/ReleaseExtra.php
Line 244 in a7b7295
round() returns a double and not an int but the issue seems to be $time/60%60. Changing it to this seems to work: (int) ($time/60) % 60
$time/60%60
(int) ($time/60) % 60
The text was updated successfully, but these errors were encountered:
72c1a7a
No branches or pull requests
Called here:
newznab-tmux/Blacklight/ReleaseExtra.php
Line 244 in a7b7295
round() returns a double and not an int but the issue seems to be
$time/60%60
. Changing it to this seems to work:(int) ($time/60) % 60
The text was updated successfully, but these errors were encountered: