Skip to content

Commit

Permalink
Merge pull request #39 from avorra/fix-register-scheme
Browse files Browse the repository at this point in the history
Fix registering custom 'meteor' scheme
  • Loading branch information
StorytellerCZ authored Aug 19, 2024
2 parents 874b08b + 071bb3e commit ac91eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skeleton/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class App {
electron.protocol.registerStandardSchemes(['meteor'], { secure: true });
} else {
electron.protocol.registerSchemesAsPrivileged([
{ scheme: 'meteor', privileges: { standard: true, secure: true, supportFetchAPI: true } }
{ scheme: 'meteor', privileges: { standard: true, secure: true, supportFetchAPI: true, stream: true } }
]);
}

Expand Down

0 comments on commit ac91eb8

Please sign in to comment.