mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
Not allowed to load local resource #239
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Fuewburvpoa on GitHub (Dec 8, 2018).
I want to make small photo library app for myself, and i get this error "Not allowed to load local resource".
In chromium based browser i simply pass "--allow-file-access-from-files" as argument to load files from local storage, but how do i do it there?
I've tried to pass it there
Electron.App.CommandLineAppendArgument("--allow-file-access-from-files");but no result.
@Fuewburvpoa commented on GitHub (Dec 9, 2018):
Found the solution there.