Fix tabbing
This commit is contained in:
@@ -6,7 +6,7 @@ export default {
|
||||
switch (request.method) {
|
||||
case 'GET':
|
||||
const listResponse = await env.media.list({ prefix, limit: 1000 });
|
||||
const keys = listResponse.objects.map(o => o.key);
|
||||
const keys = listResponse.objects.map((o) => o.key);
|
||||
|
||||
const headers = new Headers();
|
||||
headers.set('Content-Type', 'application/json');
|
||||
@@ -24,6 +24,5 @@ export default {
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
} satisfies ExportedHandler<Env>;
|
||||
|
||||
Reference in New Issue
Block a user