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
I found a problem of image view time calculation in class of TwigReadingTimeFilters.php
A variable $seconds_short_count is over 60, when the value of both($seconds_short_count and $seconds_images) variable is large.
E.g. $seconds_short_count = 50 and $seconds_images = 50 :: $seconds_short_count += $seconds_images % 60; is $seconds_short_count =100.
Its rows 74 in TwigReadingTimeFilters.php.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found a problem of image view time calculation in class of TwigReadingTimeFilters.php
A variable $seconds_short_count is over 60, when the value of both($seconds_short_count and $seconds_images) variable is large.
E.g. $seconds_short_count = 50 and $seconds_images = 50 :: $seconds_short_count += $seconds_images % 60; is $seconds_short_count =100.
Its rows 74 in TwigReadingTimeFilters.php.
The text was updated successfully, but these errors were encountered: