Skip to content
New issue

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

Bug: Chrome youtube elapsed time is broken #89

Open
JinwooYang opened this issue Aug 23, 2021 · 1 comment
Open

Bug: Chrome youtube elapsed time is broken #89

JinwooYang opened this issue Aug 23, 2021 · 1 comment
Labels
bug Something isn't working

Comments

@JinwooYang
Copy link

Describe the bug
Chrome youtube elapsed time text is broken. & keyword is shown frequently.

Screenshots
image

After checking the code,
There seems to be a problem with the script that shows the elapsed time of Chrome YouTube.

if hh is 0 then
	set position to mm & ":" & ss
else
	set position to hh & ":" & mm & ":" & ss
end if

it should be

if hh is 0 then
	set position to "" & mm & ":" & ss
else
	set position to "" & hh & ":" & mm & ":" & ss
end if

It looks like mm and hh is not a text in some cases.

After change. it works fine.

image

Details:

  • MacOS Version: Big Sur 11.5.2
  • MacBook Version: MacBook Pro (15-inch, 2018)
  • Current App Version: Chrome 92.0.4515.159
  • BTT Version: 3.581 (1724)
  • AQT Version: 3.6.8
@JinwooYang
Copy link
Author

JinwooYang commented Aug 23, 2021

Web Tool - Youtube Chrome Open > Duration has the same problem.

It should be

image

@yuuiko yuuiko added the bug Something isn't working label Jan 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants