FreeTubeApp / FreeTube

An Open Source YouTube app for privacy
https://freetubeapp.io/
GNU Affero General Public License v3.0
13.63k stars 862 forks source link

Fix search box crash #6085

Closed absidue closed 2 weeks ago

absidue commented 2 weeks ago

Fix search box crash

Pull Request Type

Related issue

Description

So this one was a weird one to investigate and I'm still not sure how any of the things are connected but this seems to fix it. The crashlog says that it crashed in an sqlite function, it only crashes with the on-screen keyboard in Windows but not with physical ones, it only happens with the main search bar not the Invidious instances one despite both having search suggestions and the fix is removing some invalid HTML?

The list attribute on the <input> element is meant to contain the ID of a <datalist> element, in FreeTube we were pointing it to the ID of a <ul> element. This seems to cause problems with the on-screen keyboard in Windows, no idea why that invalid HTML crashes the entire page with the on-screen keyboard but has zero impact with a physical keyboard.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#list

Testing

As I don't have access to a Mac, I haven't be able to confirm if this fixes the crash that macOS users were mentioning on that issue or if it is unrelated.

  1. Launch FreeTube
  2. Launch the Windows 10 On-Screen keyboard app
  3. Type a letter with the on-screen keyboard
  4. Press backspace on the on-screen keyboard
  5. Type another letter with the on-screen keyboard
  6. The page should not crash

Desktop