Skip to content

Commit

Permalink
feat: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
forscht committed Jan 11, 2023
1 parent 2cbe385 commit e7861c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/ddrive
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ let { chunkSize, timeout } = args
chunkSize = parseInt(chunkSize, 10)
if(!_.isFinite(chunkSize) || chunkSize < 1) chunkSize = undefined
timeout = parseInt(timeout, 10)
if(_.isFinite(timeout) || timeout < 1) timeout = undefined
if(!_.isFinite(timeout) || timeout < 1) timeout = undefined

//
// App entry point
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@forscht/ddrive",
"version": "3.7.3",
"version": "3.7.4",
"description": "A lightweight cloud storage system using discord as storage device written in nodejs",
"main": "src/index.js",
"author": "Darshan Patel <darshanhihoriya@gmail.com> (https://github.com/forscht/ddrive)",
Expand Down

0 comments on commit e7861c6

Please sign in to comment.