We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89aab03 commit 27cc07eCopy full SHA for 27cc07e
src/backend/src/structured/sequence/share.js
@@ -506,7 +506,7 @@ module.exports = new Sequence([
506
507
const files = []; {
508
for ( const item of shares_work.list() ) {
509
- if ( item.type !== 'file' ) continue;
+ if ( item.thing.$ !== 'fs-share' ) continue;
510
files.push(
511
await item.node.getSafeEntry(),
512
);
@@ -515,7 +515,7 @@ module.exports = new Sequence([
515
516
const apps = []; {
517
518
- if ( item.type !== 'app' ) continue;
+ if ( item.thing.$ !== 'app' ) continue;
519
// TODO: is there a general way to create a
520
// client-safe app right now without
521
// going through entity storage?
0 commit comments