Recently, a few posts circulated claiming that files from efchat.net were “malware.” Those claims are incorrect and stem from a misunderstanding of how modern web apps work. What actually happened A user downloaded a file named effie.png from https://efchat.net/src/assets/effie.png. That path, which looked like an image URL, returned HTML (our main site page) because efchat uses a single-page application (SPA) framework. SPAs often return index.html for any unrecognized route so the client router can handle navigation. ...