mirror of
https://github.com/alexta69/metube.git
synced 2026-03-19 06:53:51 +00:00
Previously angular was re-rendering the entire queue whenever any downloads changed their state. The websocket provides progress updates at a high frequency, which combined with a long download queue can quickly cause hundreds of thousands of dom nodes to be created. This results in a spike in memory usage which may persist for some time depending on browser behaviour. Adding a trackBy function resolves the issue by telling angular which row relates to a particular download.