Skip to content

Commit

Permalink
fix: don't add random suffix by default (#89)
Browse files Browse the repository at this point in the history
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
Atinux and autofix-ci[bot] committed Apr 26, 2024
1 parent 5b12091 commit 47101d9
Show file tree
Hide file tree
Showing 4 changed files with 8,032 additions and 5,820 deletions.
3 changes: 2 additions & 1 deletion playground/server/api/blob/index.put.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export default eventHandler(async (event) => {
const objects: BlobObject[] = []
try {
for (const file of files) {
const object = await put(file.name, file, { addRandomSuffix: true })
// const object = await put(file.name, file, { addRandomSuffix: true })
const object = await put(file.name, file)
objects.push(object)
}
} catch (e: any) {
Expand Down

0 comments on commit 47101d9

Please sign in to comment.