fix (editor): blank screen with binary data

This commit is contained in:
MickaelK 2024-12-06 00:13:24 +11:00
parent 609fd308c1
commit e06b2329a1

View file

@ -61,7 +61,7 @@ export default async function(render, { acl$ }) {
if (content === null || has_binary(content)) return rxjs.from(initDownloader()).pipe(
removeLoader,
rxjs.mergeMap(() => {
ctrlDownloader(render);
ctrlDownloader(render, { acl$ });
return rxjs.EMPTY;
}),
);