Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ledyba committed Dec 7, 2024
1 parent 736c4e5 commit acf97b7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions server/src/cmd/gc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ async function main() {
numMoments++;
for (let block of fml.parse(m.text).blocks) {
switch (block.type) {
case "image": {
if (block.entity != undefined) {
case 'image': {
if (block.entity !== undefined) {
usedEntities.add(block.entity);
}
break;
}
case "video": {
if (block.entity != undefined) {
case 'video': {
if (block.entity !== undefined) {
usedEntities.add(block.entity);
}
break;
}
case "audio": {
if (block.entity != undefined) {
case 'audio': {
if (block.entity !== undefined) {
usedEntities.add(block.entity);
}
break;
}
case "text":
case "link":
case "markdown":
case 'text':
case 'link':
case 'markdown':
default:
break;
}
Expand Down

0 comments on commit acf97b7

Please sign in to comment.