Skip to content

Commit

Permalink
companion: exclude non downloadable files in fetched list for dropbox (
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyperkins authored Sep 1, 2020
1 parent c78d37b commit 0a299d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/provider/dropbox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ class DropBox extends Provider {
.qs(query)
.auth(token)
.json({
path: `${directory || ''}`
path: `${directory || ''}`,
include_non_downloadable_files: false
})
.request(done)
}
Expand Down

0 comments on commit 0a299d6

Please sign in to comment.