Skip to content

Commit

Permalink
Actually fix dango.mp4
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed May 29, 2024
1 parent 83ac7d6 commit 9cbcf2e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src-main/protocols.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const packageJSON = require('../package.json');
* @property {boolean} [secure]
* @property {boolean} [brotli]
* @property {boolean} [embeddable]
* @property {boolean} [stream]
*/

/** @type {Record<string, Metadata>} */
Expand Down Expand Up @@ -45,7 +46,8 @@ const FILE_SCHEMES = {
'tw-extensions': {
root: path.resolve(__dirname, '../dist-extensions'),
supportFetch: true,
embeddable: true
embeddable: true,
stream: true
},
'tw-update': {
root: path.resolve(__dirname, '../src-renderer/update'),
Expand Down Expand Up @@ -86,7 +88,8 @@ protocol.registerSchemesAsPrivileged(Object.entries(FILE_SCHEMES).map(([scheme,
privileges: {
standard: !!metadata.standard,
supportFetchAPI: !!metadata.supportFetch,
secure: !!metadata.secure
secure: !!metadata.secure,
stream: !!metadata.stream
}
})));

Expand Down

0 comments on commit 9cbcf2e

Please sign in to comment.