Skip to content

Commit

Permalink
fix: prtoection against subscribing to yourself
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 12, 2022
1 parent c0cfaaa commit fc32fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/fileStore.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const deleteFile = async (req, res) => {
await FileStore.deleteFileStoreItem(req.body.fileId);
res.status(200).json({
message:
'File will be delete from the filestore, but it will take a few mins to confirm.',
'File will be deleted from the filestore, but it will take a few mins to confirm.',
});
} catch (error) {
res.status(400).json({
Expand Down

0 comments on commit fc32fd2

Please sign in to comment.