this post was submitted on 09 Feb 2024
237 points (94.7% liked)

Privacy

31224 readers
967 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
 

Hello, I started to experience a problem with Mull and Duolingo (and also bromite) that started about 1 month ago.

Basically Duolingo tells me that my browser is not supported but it worked perfectly fine before. Anyone experienced this issue? I can't find an issue on mull repo apparently about this specific issue. Dunno if it is something about resisting fingerprint but I wonder why that happens..

you are viewing a single comment's thread
view the rest of the comments
[–] gramie@lemmy.ca 6 points 7 months ago (2 children)

I'm working on an application right now that requires the ability to load and save data to the local file system. Firefox does not allow this, whereas Chrome does. The whole application runs from the local file system, so I don't think there is much of a security issue.

But I actually do is test for the existence of the function to open the save or load dialog. That way, if Firefox does implement it, Firefox will work as well.

[–] emergencyfood@sh.itjust.works 5 points 7 months ago (1 children)

the ability to load and save data to the local file system

That sounds like a huge security risk. I'm surprised any browser allows it.

[–] gramie@lemmy.ca 2 points 7 months ago (1 children)

All it can do is open a dialogue to load or save a file. The action must also be initiated by the user (e.g. clicking a button). It's not randomly allowing a page to load and save on its own.

[–] emergencyfood@sh.itjust.works 1 points 7 months ago (1 children)

But both of those are possible on Firefox?

[–] gramie@lemmy.ca 4 points 7 months ago

Using JavaScript to open a save or load dialog is not possible on Firefox. It lacks the methods showOpenFilePicker() and showSaveFilePicker().

[–] Samueru@lemmy.world 1 points 7 months ago (1 children)

Is that a PWA? Firefox used to support it.

[–] gramie@lemmy.ca 1 points 7 months ago

It is simply an HTML page with local JavaScript files. Nothing else. It has to run on as many platforms as possible, and be totally isolated from the outside world.